enter image description here我怎麼能寫在資源文件夾中的圖像Spring MVC中的項目
@GET
@Path("/welcome1")
@Produces(MediaType.APPLICATION_JSON)
public Response image() {
try {
BufferedImage originalImage = ImageIO.read(new File("F:\\images\\1.jpg"));
ImageIO.write(originalImage, "jpg", new File("resources\img\copyright.jpg"));
} catch (IOException e) {
System.out.println(e.getMessage());
}
return null;
}
我想加載圖像形成我的硬盤項目folder.but我得到了 錯誤(系統無法找到具體的路徑)。
錯誤是:
java.io.FileNotFoundException:資源\ IMG \ copyright.jpg(該 系統不能找到指定的路徑)
運行應用程序中沒有src文件夾 – Jens