在我的应用程序中使用相对路径访问图像时:
FileOutputStream fos = new FileOutputStream("/images/imag.jpg");
我得到一个 java.io.FileNotFoundException,但如果我提供它的整个路径
FileOutputStream fos = new FileOutputStream(
"C:/Users/seema/Documents/NetBeansProjects/SpiceCareers/web/images/imag.jpg");
我需要在我的项目中使用相对路径,我该怎么做?谢谢。