Hỏi đáp
Chia sẻ kiến thức, cùng nhau phát triển
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");
}
}
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