実際、jsp/struts2 フレームワークを使用してオンライン画像エディターを作成しようとしています。imageIO.write() メソッドを使用して、作成したさまざまなフィルターで処理されたバッファー イメージを書き込みました。今問題は、その画像を同じページに表示する必要があるということです。これまで私はこれだけのことをしてきました。
{
File imagefile = new File("C:/Users/Documents/NetBeansProjects/project/web/images/"+img+"");
image = ImageIO.read(imagefile);
ImageFlipps imgflip=new ImageFlipps(image); /* image filter class that takes a bufferedimage and return a processed bufferedImage. */
imgflip.setBufferedImages();
BufferedImage img2= imgflip.vhIImageFlipps(); // returned buffered image.
ImageIO.write(img2, "jpg", new File("C:/Users/Documents/NetBeansProjects/project/web/images/new.jpg")); // writing image to some specific folder.
}
同じページのこのコードの下で、画像タグを使用してその保存された画像を表示しようとしていますが、画像が表示されません。
<img src="C:/Users/Documents/NetBeansProjects/project/web/images/new.jpg" alt="image not found" />
単純なロジックですが、機能していません....助けてください..この問題に2週間前から悩まされています。