JSP 如何从tomcat临时目录访问映像

blmhpbnm  于 2022-12-07  发布在  其他
关注(0)|答案(1)|浏览(148)

我已经上传了一个图像在tomcat临时文件夹中使用此代码:

@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%" />

但是它没有加载。2我如何通过相对路径访问它?

vxqlmq5t

vxqlmq5t1#

您不能在您的web应用程序之外提供文件,您需要再次读取图像并将其作为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将没有用处。

相关问题