在不上传用户图像的情况下编辑数据时避免错误
P粉707235568
P粉707235568 2024-03-31 12:44:01
0
1
342

因此,当我为用户更新数据时,我遇到了一个错误,即使我已经在数据库中为用户上传了图像,它也想再次上传图像。谁能告诉我如何在不上传图像的情况下保存用户,但上传的图像保留在我的数据库中?

错误是java.IOException:无法保存图像文件:

由以下原因引起:java.nio.file.DirectoryNotEmptyException:profile-image/4

这是我的控制器

@PostMapping("/profile/save")
public String saveProfile(Profile profile, Model model, @RequestParam("image") MultipartFile multipartFile,@RequestParam(value="userId", required=false) Long userId) throws IOException {
profile.setUser(userRepo.findById(userId).get());
String fileName = StringUtils.cleanPath(multipartFile.getOriginalFilename()) ;
String uploadDir - "profile-image/"+ profile.getId();
FileUploadUtil.saveFile(uploadDir, fileName, multipartFile);
profile.setProfileImg(fileName);
profileService.saveProfile(profile);
return "redirect:/user/profile";

P粉707235568
P粉707235568

全部回复(1)
P粉156532706

您的 FileUploadUtil 类中存在错误。仅当该目录不存在存在时才应创建该目录:

public static void saveFile(String uploadir, String fileName, MultipartFile multipartFile) throws IOException {
    Path uploadPath = Paths.get(uploadDir);
    if (!Files.exists(uploadPath)) {
        Files.createDirectories(uploadPath);
    }
    try (InputStream inputStream = multipartFile.getInputStream()) {
        Path filePath = uploadPath. resolve(fileName);
        System.out.printIn(filePath.toFile()-getAbsolutePath()+"File Path*******");
        Files.copy(inputStream, filePath, StandardCopyOption.REPLACE_EXISTING);
    } catch (IOException ioe) {
        throw new IOException("Could not save image file: " + fileName, ioe);
    }
}
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!