我使用以下代码在tomcat temp文件夹中上传了一张图片:
@RequestMapping(value = "/uploadFile", method = RequestMethod.POST)
public @ResponseBody
String uploadFileHandler(@RequestParam("name") String name,
@RequestParam("file") MultipartFile file) {
if (!file.isEmpty()) {
try {
byte[] bytes = file.getBytes();
// Creating the directory to store file
String rootPath = System.getProperty("catalina.home");
File dir = new File(rootPath + File.separator + "tmpFiles");
if (!dir.exists())
dir.mkdirs();
// Create the file on server
File serverFile = new File(dir.getAbsolutePath()
+ File.separator + name);
BufferedOutputStream stream = new BufferedOutputStream(
new FileOutputStream(serverFile));
stream.write(bytes);
stream.close();
System.out.println(serverFile.getAbsolutePath());
logger.info("Server File Location="
+ serverFile.getAbsolutePath());
return "You successfully uploaded file=" + name;
} catch (Exception e) {
return "You failed to upload " + name + " => " + e.getMessage();
}
} else {
return "You failed to upload " + name
+ " because the file was empty.";
}
}
现在我想以这种方式访问jsp页面中的图像:
<img src="/home/sudeepcv/java work place/Server/apache-tomcat-7.0.54/tmpFiles/img.jpg" width="100%" />
但是它不是加载可以如何通过相对路径访问它? 谢谢先进
答案 0 :(得分:0)
您无法提供webapp之外的文件,您需要再次阅读图像并将其作为base64编码数据发送,请参阅此question了解如何操作以及浏览器支持。
但我建议您将上传的图片放在我们的网络应用可以访问的某个目录中,例如<your-app>/images
并在您的HTML中使用<img src="images/img.jpg" width="100%" />
。
要了解您的申请路径,您可以使用ServletContext#getRealPath代替System.getProperty("catalina.home")
:
String rootPath = context.getRealPath(""); // need access to the ServletContext
虽然这是一种方法,但您需要知道servlet容器可能配置为不解压war文件,在这种情况下getRealPath
将无用。