-1
我試圖檢索圖片,我已經存儲在我的tomcat服務器,並且我想要顯示這些圖像在我的網頁,但我不怎麼可以到達或訪問它們。 所以我怎麼可以讓這個訪問圖像,我已經上傳到tomcat服務器
// upload code from my netbeans project
File f = new File("images/" + name + ".png");
OutputStream outputStream = new FileOutputStream(f);
int read;
byte[] bytes = new byte[1024];
while ((read = inp.read(bytes)) != -1) {
outputStream.write(bytes, 0, read);
}
jsp page <img src="?">
圖像存儲在bin文件夾中的Tomcat服務器 – user3576884