从JSP访问资源文件
我想从 java 类访问 xml 文件,位于 web/resources 文件夹下。 即
---网页
|
|--Web-INF
|
|-资源
| |-data.xml
|
|-其他jsps
---源文件夹
|-databean
我想从 databean 包下的类访问 data.xml。是否可以?如何?
I want to access xml files from java class, lying under web/resources folder..
i.e
---Web pages
|
|--Web-INF
|
|-resources
| |-data.xml
|
|-other jsps
---Source Folder
|-databean
I want to access data.xml from a class under databean package. Is it possible? How?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
ServletContext #getResource()
或#getResourceAsStream()
获取网页内容中可用的资源。然而,您通常在Servlet,而不是 JSP。
Use
ServletContext#getResource()
or#getResourceAsStream()
to obtain resources which are available in the webcontent.You however normally do that in a Servlet, not a JSP.