这是我的代码:
      <form name="form" id="form" enctype="mutipart/form-data" 
        action="imageResize.jsp" method="post">
      <input type="file" name="file"/>
      <input type="submit" value="提交" />
     </form>目标jsp:
<jsp:useBean id="smart" scope="page" class="com.jspsmart.upload.SmartUpload"/>
<%
    smart.initialize(pageContext);
    smart.upload();
    smart.getFiles().getFile(0);
%>在smart.getFiles().getFile(0)这里报错,发现smart.getFiles()的长度为0,大家都说没有设置enctype="mutipart/form-data",可是我设置了啊,怎么还会有这个错啊!!!