微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Spring-java.nio.file.FileSystemException:./folder/file.png:只读文件系统

如何解决Spring-java.nio.file.FileSystemException:./folder/file.png:只读文件系统

我正在尝试使用以下格式上传文件

<form th:action="@{/upload}" method="post" enctype="multipart/form-data">
    <input type="file" name="files">
    <input type="submit" value="Upload Files" accept="image/png,image/jpeg"></input>
</form>

这是我的控制器:

private final String UPLOAD_DIR = "./uploads/";

@PostMapping("/upload")
    public String upload(@RequestParam("files") multipartfile file,RedirectAttributes attributes) {
        
        if(file.isEmpty()) {
             attributes.addFlashAttribute("message","Please select a file to upload.");
             return "redirect:/";
        }
        
        String fileName = StringUtils.cleanPath(file.getoriginalFilename());
        
        try {
            Path path = Paths.get(UPLOAD_DIR,fileName);
            Files.copy(file.getInputStream(),path,StandardcopyOption.REPLACE_EXISTING);
        } catch (IOException e) {
            e.printstacktrace();
        }
        
        attributes.addFlashAttribute("message","You successfully uploaded " + fileName + '!');
        
        return "redirect:/";
    }

一切都可以在localhost(windows)上正常运行,但是我的问题是它在服务器(linux)上不起作用,因为我得到了一个例外: “ java.nio.file.filesystemexception:./uploads/file.png:只读文件系统”“ uploads”文件夹具有所有权限,请帮助,我不再有想法。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。