JSP写的上传文件时出错 Files' name is invalid or does not exist (1205).求大神指导

用的JspSmartUpload单独一个上传下载的项目可以成功复制到另一个项目中提示错误SEVERE:Servlet.service()forservlet[jsp]in... 用的JspSmartUpload 单独一个上传下载的项目可以成功 复制到另一个项目中提示错误
SEVERE: Servlet.service() for servlet [jsp] in context with path [/house] threw exception [java.lang.IllegalArgumentException: Files' name is invalid or does not exist (1205).] with root cause
java.lang.IllegalArgumentException: Files' name is invalid or does not exist (1205).

上传文件部分代码:
<%
String SubPath=this.getServletContext().getRealPath("/")+"upload";
File createSub=new File(SubPath);
if(!createSub.exists())createSub.mkdir();
upFile.initialize(pageContext);
upFile.setAllowedFilesList("txt,doc,xls,rar,mp3,");
upFile.setMaxFileSize(2000000);
upFile.upload();
Long size=upFile.getFiles().getSize();
if(size>2000000)
{
out.println("<script>alert('上传文件太大,无法完成上传');</script>");
}
else{
String filename=upFile.getFiles().getFile(0).getFileName();
upFile.save("/upload");
try{
String username="sa";
String password="123456";
Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
String url="jdbc:sqlserver://localhost:1433;DatabaseName=house";
Connection conn=DriverManager.getConnection(url,username,password);
String sql="insert into notice(title,contents,filename) values(?,?,?)";
PreparedStatement pstmt=conn.prepareStatement(sql);
pstmt.setString(1,upFile.getRequest().getParameter("title"));
pstmt.setString(2,upFile.getRequest().getParameter("contents"));
pstmt.setString(3,filename);
pstmt.execute();
pstmt.close();
out.println(upFile.getRequest().getParameter("title")+"添加成功!");
展开
 我来答
yyy521fyy
2014-06-25 · TA获得超过3484个赞
知道大有可为答主
回答量:5392
采纳率:25%
帮助的人:3532万
展开全部
你好:请提供更多的信息,或者留个联系方式,通过远程解决。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
科商国0p
2014-06-23 · TA获得超过357个赞
知道小有建树答主
回答量:534
采纳率:28%
帮助的人:237万
展开全部
你好:
貌似是路径错误,导致文件名找不到。
追问
那路径在哪里  该怎么改呢
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式