如何读取 WEB-INF 目录中的文件?
我正在使用 Tomcat 运行 Java Web 应用程序,并且想要读取位于我的 WEB-INF
目录中的 Properties
文件。 如何获取此 Properties
文件的 InputStream
以便我可以读取它?
I'm running Java web application using Tomcat and I want to read a Properties
file that's located in my WEB-INF
directory. How can I get an InputStream
to this Properties
file so I can read it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ServletContext.getResource
/getResourceAsStream
,IIRC。ServletContext.getResource
/getResourceAsStream
, IIRC.