java.nio.file.NoSuchFileException:/ home / leonie3 / Documents / PhotosEleves / null
我正在使用java.nio.file包,并尝试使用以下代码创建文件。
@RestController 公共类NiveauRestController {
private NiveauRepository niveauRepository;
public NiveauRestController(NiveauRepository niveauRepository) {
this.niveauRepository = niveauRepository;
}
@GetMapping(path="/photoNiveau/{id}",produces = MediaType.IMAGE_PNG_VALUE)
public byte[] getPhoto(@PathVariable("id") Long id) throws Exception{
Niveau niv=niveauRepository.findById(id).get();
return Files.readAllBytes(Paths.get(System.getProperty("user.home")+"/Documents/PhotosEleves/"+niv.getPhotoNiveau()));
}
}
此应用程序没有针对/ error的显式映射,因此您将其视为备用。
2019年5月21日星期二20:41:18
发生意外错误(类型=内部服务器错误,状态= 500)。
/ home / leonie3 / Documents / PhotosEleves / null enter code here