-1
私はtomcatサーバーに保存されている画像を取得しようとしています。これらの画像をWebページに表示したいのですが、どうすればいいですか?それにアクセスするか、アクセスしてください。私はあなたが例えば、 "カレントディレクトリ" にアップロードべきではありません。この私は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="?">
画像:あなたはこの種の攻撃に自分が脆弱にしないよう
http://example.com/image/FILENAME.jpg