无法读取属性文件

发布于 2024-09-17 17:27:35 字数 279 浏览 2 评论 0原文

我正在开发一个Web应用程序,在该应用程序中我想从应用程序外部(即系统驱动器上)存在的属性文件中检索值。 但在执行此操作时,我遇到了问题。有趣的是,如果我将属性文件放在类路径位置,那么应用程序可以正常工作。 我正在使用resin服务器3.0.23和带有spring 2.5.4 jars的spring mvc架构。我还在resin 4.0.9的resin升级版本上尝试过。我也遇到了同样的问题。

上述查询的resin服务器是否存在兼容性问题,或者是否有其他方法可以解决此问题?

请建议。

谢谢。

I am working on one web application in which i want to retrieve values from property files which are present outside of the application i.e on system drive.
but while doing this i am facing the problem.Interestingly if i put property files at class path location then application works properly.
I am using resin server 3.0.23 and spring mvc architecture with spring 2.5.4 jars.i am also tried it on resin upgraded version of resin 4.0.9. there also i am getting the same problem.

Is there any compatibility issue of resin server for above query or If there is any other way to solve this issue?

please suggest.

thanks.

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

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

发布评论

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

评论(1

安穩 2024-09-24 17:27:35

如果您想从系统上的任意路径读取属性文件,您需要执行类似的操作

Properties props = new Properties();
props.load(new FileInputStream(somefilename));

如果您尝试通过调用 getResource()getResourceAsStream() 来加载属性文件,您的属性文件应该位于可通过类加载器访问的某个位置,通常位于类路径上。检查文档中的 Class.getResourceClassLoader.getResource

If you want to read a properties file from an arbitrary path on the system you need to do something like

Properties props = new Properties();
props.load(new FileInputStream(somefilename));

If you are trying to load the properties file with calls to getResource() or getResourceAsStream(), your properties file should be somewhere accessible from a ClassLoader, usually on the classpath. Check the docs for Class.getResource and ClassLoader.getResource

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