我正在做一个 javaEE 应用程序,我正在使用 spring 注入我的 ejbs 和 WAS7,目前我正在 Windows 环境中运行它,但最终它将在 unix 环境中运行。所以我创建了一个java类作为我的spring控制器,我应该从jsp获取一些数据并将其转换为excel。因此,当我尝试从我的网络内容文件夹中获取图像时,我可以将其放入我的 excel 中,但找不到文件。这是我到目前为止没有成功的尝试:
String path = File.separatorChar + "img" + File.separatorChar + File.separatorChar + "logoCorporativo.jpg";
System.out.println(path);
try {
FileInputStream fis = new FileInputStream(path);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
和
String path = File.separator + "img" + File.separator + File.separator + "logoCorporativo.jpg";
System.out.println(path);
try {
FileInputStream fis = new FileInputStream(path);
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
我发现当我在浏览器中输入“http://localhost:9080/AdminMapasWeb/img/logoCorporativo.jpg”时,我可以看到图像。
有没有人收到 FileNotFound 异常???提前致谢。