java文件上传到服务器 j smartupload

我的学习用的一个web项目我将tomcat放在阿里云服务器上用的jsmartupload本地都可以用移到服务器就用不了不知道是路径问题还是其他的protectedvoid... 我的学习用的一个web项目 我将tomcat放在阿里云服务器上 用的jsmartupload 本地都可以用 移到服务器就用不了 不知道是路径问题还是其他的

protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

response.setContentType("text/html");
HttpSession session = request.getSession();
String page="";
SmartUpload mySmartUpload = null;
try {
mySmartUpload = new SmartUpload();
} catch (Exception e) {
e.printStackTrace();
}
String taskNumber=(String)session.getAttribute("tasknumber");
mySmartUpload.initialize(config,request,response);
try {
mySmartUpload.upload();
} catch (SmartUploadException e1) {
e1.printStackTrace();
}
try {
com.jspsmart.upload.File file = mySmartUpload.getFiles().getFile(0);
file.saveAs("http://115.29.52.183:80/FileStorage/"+taskNumber+"task.csv",SAVEAS_AUTO);

com.jspsmart.upload.File file1 = mySmartUpload.getFiles().getFile(1);
file1.saveAs("http://115.29.52.183:80/FileStorage/"+taskNumber+"user.csv",SAVEAS_AUTO);

} catch (Exception e) {
e.printStackTrace();
}

}
展开
 我来答
tempAccountAD
推荐于2016-11-25 · TA获得超过540个赞
知道答主
回答量:99
采纳率:0%
帮助的人:40.7万
展开全部
        SmartUpload su = new SmartUpload();
        JspFactory factory = JspFactory.getDefaultFactory();
        PageContext pageContext = null;
        JSONObject obj = new JSONObject();
        String fileName = UUID.randomUUID().toString();
        try {
            initFile();
            pageContext = factory.getPageContext(this, request, response, "", true, 8192, true);
            su.initialize(pageContext);
            int size = su.getSize();
            if(size>=400){
                obj.put("state", false);
                obj.put("msg", "图片不能大于400KB");
            }else{
                su.upload();
                Files file = su.getFiles();   //必须在upload后才有值
                //此为得到文件的扩展名,getFile(0)为得到唯一的一个上传文件
                String ext=file.getFile(0).getFileExt();
                String name = fileName+"."+ext;
                su.getFiles().getFile(0).saveAs("report/upload/"+name);
                WebConstants.REPORT_LOGO_URL="report/upload/"+name;
                obj.put("fileName", name);
                obj.put("state", true);
                obj.put("ext", ext);
            }
        } catch (Exception e) {
            obj.put("state", false);
            obj.put("msg",e.toString());
            e.printStackTrace();
        }
        PrintWriter out = response.getWriter();
        out.print(obj);
        out.flush();

接收到文件后就在tomcat\webapps\项目\report\upload下面

zmzmzero
2015-06-04 · 超过11用户采纳过TA的回答
知道答主
回答量:50
采纳率:0%
帮助的人:21万
展开全部
看起来是路径的问题,检查下服务器的路径
追问
有例子么 具体说明下     比如 我的上传文件的地址改放在哪里之类的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式