アプリケーションの画像にアクセスするために相対パスを使用する場合:
FileOutputStream fos = new FileOutputStream("/images/imag.jpg");
java.io.FileNotFoundExceptionが発生しますが、パス全体を指定すると機能します
FileOutputStream fos = new FileOutputStream(
"C:/Users/seema/Documents/NetBeansProjects/SpiceCareers/web/images/imag.jpg");
プロジェクトで相対パスを使用する必要がありますが、どうすればよいですか?ありがとう。