Hỏi đáp

Chia sẻ kiến thức, cùng nhau phát triển

Upload hình ảnh trong spring boot

09:43 03-08-2018 2.469 lượt xem 1 bình luận 15:39 07-08-2018

Mọi người xem giúp mình đoạn code dưới có chỗ nào sai, hình ảnh hiện không lưu được trong thư mục thuộc project (ví dụ: src/main/resources/upload)

        // Upload avatar
         // Thư mục gốc upload file.
         String path = request.getServletContext().getRealPath("");
         System.out.println("uploadRootPath=" + path);
         String dirPath = path + File.separator + Defines.DIR_UPLOAD;
         System.out.println("dirPath=" + dirPath);
        
         if (cmf!= null) {
            try {
                InputStream inputStream = cmf.getInputStream();
                if (inputStream == null) {
                    System.out.println("File inputstream is null");
                }
                File dirFile = new File(dirPath);
                // Tạo thư mục gốc upload nếu nó không tồn tại.
                if(!dirFile.exists()) {
                    dirFile.mkdir();
                }
                String filePath = dirPath + File.separator + cmf.getOriginalFilename();
                // Create the file at server
                File upload = new File(filePath);
                // method transferTo để tiến hành upload file lên server.
                cmf.transferTo(upload);
                user.setAvatar(cmf.getOriginalFilename());
                IOUtils.closeQuietly(inputStream);
            } catch (IOException ex) {
                System.out.println("Error saving uploaded file");
            }
      
        }

Bình luận

Để bình luận, bạn cần đăng nhập bằng tài khoản Howkteam.

Đăng nhập
K9 SuperAdmin, KquizAdmin, KquizAuthor đã bình luận 11:11 03-08-2018

cái này nhìn vào rồi nói sai chỗ nào thì thua ak. check lại thư mục đó đã phân quyền chưa nữa nha

Câu hỏi mới nhất