你使用的那个上传组件啊?
struts2 默认提供的那个?
common-file-upload ?
要是使用的是struts 使用域驱动模式 在文件名上使用 *File 就行啊,然后你径读取就行了啊。
String path = request.getSession().getServletContext().getRealPath("/file");
OutputStream os = new FileOutputStream(path+"/"+Filename);
path是个字符串,你可以自己定义
配置文件.看你用什么库了....