你的表单的提交方式要改成POST提交(METHOD="POST")
还有当你用了<html:file>标签时,你的表单的标签也必须是struts的<html:form>标签

解决方案 »

  1.   

    是不是没有找到BEAN 呀,eva379(艺艺) 说的东西我都是正确的
    如果没找到BEAN我没见到过这个异常,上次也是出了这个错误
    是没有enctype="multipart/form-date",这次倒不行了,真郁闷!
      

  2.   

    你可用newxy(新坐标),newxy用了struts的FormFile类。newxy1.02文件上传到文件夹、到数据库的方法如下:1.上传文件到服务器文件夹中的方法:
    <%@ page contentType="text/html; charset=GBK" %>
    <%@ taglib uri="/WEB-INF/newxy-html.tld" prefix="nhtml"%>
    <%@ taglib uri="/WEB-INF/newxy-logic.tld" prefix="nlogic"%><nlogic:action1 id="act1" formName="fileForm"/>
    <nhtml:form action="" formName="fileForm" enctype="multipart/form-data">
      文件夹:<input type="text" name="_directory" size="40"/><br />
      文件1,不大于1024K:<nhtml:file property="file1" size="40" maxSize="1024"/><br />
      文件2,不大于1024K:<nhtml:file property="file2" size="40" maxSize="1024"/><br />
    </nhtml:form>
    <nhtml:button actionId="act1" method="upload"/>2.上传文件到数据库中的方法:
    <%@ page contentType="text/html; charset=GBK" %>
    <%@ taglib uri="/WEB-INF/newxy-html.tld" prefix="nhtml"%>
    <%@ taglib uri="/WEB-INF/newxy-logic.tld" prefix="nlogic"%><nlogic:action1 id="act1" formName="fileForm"/>
    <nhtml:form action="" formName="fileForm" enctype="multipart/form-data">
      数据库表名:<input type="text" name="_table" size="40"/><br />
      说明:<input type="text" name="explain" size="40"/><br />
      文件1,不大于1024K:<nhtml:file property="file1" size="40" maxSize="1024"/><br />
      文件2,不大于1024K:<nhtml:file property="file2" size="40" maxSize="1024"/><br />
    </nhtml:form>
    <nhtml:button actionId="act1" method="update"/>这两种方法是不是最简单的,而且很相似。大家帮忙比较,找到更简单的方法送50分。
    newxy技术网站:http://www.newxy.net
    有关文件上传:
      文件上传至文件夹: http://www.newxy.net/doc.jsp#anchor15.1
      文件上传至数据库: http://www.newxy.net/doc.jsp#anchor15.2
      文件上传至文件夹与上传至数据库的比较:http://www.newxy.net/doc.jsp#anchor15.3
    有关范例:
      http://www.newxy.net/zh_cn/samples/sample2/demo.jsp