我正在使用 spring MVC 和 jquery 上传文件。在我写的类方法里面
@RequestMapping(value="attachFile", method=RequestMethod.POST)
public @ResponseBody List<FileAttachment> upload(
@RequestParam("file") MultipartFile file,
HttpServletRequest request,
HttpSession session) {
String fileName = null;
InputStream inputStream = null;
OutputStream outputStream = null;
//Save the file to a temporary location
ServletContext context = session.getServletContext();
String realContextPath = context.getRealPath("/");
fileName = realContextPath +"/images/"+file.getOriginalFilename();
//File dest = new File(fileName);
try {
//file.transferTo(dest);
inputStream = file.getInputStream();
outputStream = new FileOutputStream(fileName);
inputStream.close();
outputStream.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
它正确上传文件我正在使用
ServletContext context = session.getServletContext();
String realContextPath = context.getRealPath("/");
获取路径。我的第一个问题是,这是获取路径的正确方法吗,它将文件存储在 workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/myproject/images 的某处
当我尝试使用以下代码在我的 jsp 页面上显示此图像时
<img src="<%=request.getRealPath("/") + "images/images.jpg" %>" alt="Upload Image" />
它不显示图像,它生成以下html
<img src="/home/name/workspace/.metadata/.plugins/org.eclipse.wst.server.core/tmp0/wtpwebapps/myproject/images/images.jpg" alt="Upload Image">
我做的事情对吗?在我的项目中,我必须每天上传大量文件。
如果您需要其他任何内容来理解我的问题,请告诉我