在struts中用SmartUpload上传文件时upload()很慢是什么原因啊,请教高手
我在jsp中用SmartUpload速度很快,代码如下:
mySmartUpload.initialize(pageContext);
mySmartUpload.upload();
mySmartUpload.getFiles().getFile(0).getFileName();
mySmartUpload.save( "module/ ");//文件保存的目录为module
但到了struts中执行到了方法upload()就非常慢,代码如下:
SmartUpload su = new SmartUpload();
su.initialize(getServletConfig(),request,response);
su.initialize(this.getServlet().getServletConfig(),response,request);
su.upload();
su.save( "module/ ");//文件保存的目录为upload
请问是什么原因啊?
------解决方案--------------------顶