kingeditor(jsp)与SSH三大框架整合上传图片出错问题解决方案(3)
来源:未知 责任编辑:责任编辑 发表时间:2015-01-01 13:16 点击:次
095
return;
096
}
097
098
SimpleDateFormat df = new SimpleDateFormat("yyyyMMddHHmmss");
099
String newFileName = df.format(new Date()) + "_" + new Random().nextInt(1000) + "." + fileExt;
100
try{
101
File uploadedFile = new File(savePath, newFileName);
102
item.write(uploadedFile);
103
}catch(Exception e){
104
out.println(getError("上传文件失败。"));
105
return;
106
}
107
108
JSONObject obj = new JSONObject();
109
obj.put("error", 0);
110
obj.put("url", saveUrl + newFileName);
111
out.println(obj.toJSONString());
112
}
113
}
114
%>
115
<%!
116
private String getError(String message) {
117
JSONObject obj = new JSONObject();
118
obj.put("error", 1);
119
obj.put("message", message);
120
return obj.toJSONString();
121
}
122
%>
作者:larch
相关新闻>>
- 发表评论
-
- 最新评论 更多>>