我在最新的 glassfish (3.1.2) - 所以不需要 apache FileItem 并且 getPart() 没有错误。我读到上传图像的最佳做法是将它们保存在文件系统中(例如,请参见此处)。我正在编辑已经存在的代码——那很臭——所以我有了这样做的想法:
Part p1 = request.getPart("file");
System.out.println("!!!!!P1 : " + p1);
印刷 :
!!!!!P1 : File name=DSC03660.JPG,
StoreLocation=C:\_\glassfish3\glassfish\domains\domain1\generated\jsp\elkethe\upload_7cb06306_138b413999a__7ffa_00000000.tmp,
size=2589152bytes, isFormField=false, FieldName=file
我的换行符。在人们正在做的代码中:
if (request.getParameter("crop") != null) {
// get path on the server
String outputpath = this.getServletContext().getRealPath(
"images/temp/" + session.getId() + ".jpg");
// store photo
InputStream is = p1.getInputStream();
createPhoto(is, outputpath);
session.setAttribute("photo_path", "images/temp/" + session.getId()
+ ".jpg");
response.sendRedirect("cropping");
return;
}
在哪里
private void createPhoto(InputStream is, String outputpath) {
FileOutputStream os = null;
try {
os = new FileOutputStream(outputpath);
// write bytes taken from uploaded file to target file
int ch = is.read();
while (ch != -1) {
os.write(ch);
ch = is.read();
}
} catch (Exception ex) {
ex.printStackTrace();
} finally {
Helpers.close(os);
}
}
现在发生的情况是,文件在提交表单时上传到 StoreLocation (???),所以显然这一切都是徒劳的 p1.getInputStream()
。
我的问题是:
- 什么是 StoreLocation ?那些 glassfish 上传的 tmp 是多少?所有这些参数在哪里设置?我确实阅读了 BalusC 的教程——但没有提到 StoreLocation(谷歌也不是很有帮助)。
- 处理这种情况的更专业的方法是什么 - 包括将照片保留在 webroot 之外 - 但使用 glassfish 提供的设施(如果它提供的话)?
- 即使 p1 打印得这么好也让我无法理解(它似乎没有Override
toString()
)
甚至对如何重命名照片等提示感兴趣(这个 sessionID 是正确的吗? - 还要检查时间技巧):
if (request.getParameter("save") != null) {
long time = System.currentTimeMillis();
String path = "images/upload/" + session.getId() + time + ".jpg";
String outputpath = this.getServletContext().getRealPath(path);
// store photo
InputStream is = p1.getInputStream();
createPhoto(is, outputpath);
// etc
}