从 Jar 中读取外部文件

发布于 2024-11-25 01:58:45 字数 394 浏览 1 评论 0原文

我正在使用下面提到的代码从 java 类读取文件(.cer 文件)。 java 类将捆绑在 Jar 中,然后包含在 EAR 中。

FileInputStream inStream = new FileInputStream ("/home/test/foo.cer"); 

我也尝试过

FileInputStream inStream = new FileInputStream ("home/test/foo.cer"); 

,但它们都抛出 FileNotFoundException。 EAR部署在Unix系统的Weblogic中。我已经验证了路径和文件名。

如果我遗漏了什么,有什么想法吗?

I am using below mentioned code to read a file (.cer file) from a java class. The java class will be bundled inside a Jar and then be included into a EAR.

FileInputStream inStream = new FileInputStream ("/home/test/foo.cer"); 

I also tried

FileInputStream inStream = new FileInputStream ("home/test/foo.cer"); 

But both of them throw FileNotFoundException. The EAR is deployed in Weblogic in a Unix system. I have verified the path and file name.

Any ideas if I have missing anything?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

笑饮青盏花 2024-12-02 01:58:45

我建议将 .cer 文件的位置包含在应用程序服务器的类路径中,然后使用 ClassLoader 的 getResourceAsStream(String location) 方法。

如果您将目录 /home/test 添加到类路径中,则适当的代码应该是:

this.getClass().getClassLoader().getResourceAsStream("foo.cer");

我发现这是在应用程序服务器中运行时加载外部资源的一种更可靠的方法,而且它使得测试更容易。

I suggest including the location of the .cer file on the application server's classpath, and then loading it with ClassLoader's getResourceAsStream(String location) method.

If you added the directory /home/test to the classpath, appropriate code should be:

this.getClass().getClassLoader().getResourceAsStream("foo.cer");

I've found this to be a far more reliable method of loading external resources when running in an appserver, plus it makes testing much easier.

夕嗳→ 2024-12-02 01:58:45
try {
    BufferedReader reader = new BufferedReader(new FileReader(FILE_NAME_REL_OR_ABSOLUTE));
    reader.readLine();
} catch (IOException e) { 

} catch (FileNotFoundException ex) {

}
try {
    BufferedReader reader = new BufferedReader(new FileReader(FILE_NAME_REL_OR_ABSOLUTE));
    reader.readLine();
} catch (IOException e) { 

} catch (FileNotFoundException ex) {

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文