Struts2中如何访问文件?
我喜欢将 XML 文件放在“/src”目录中,然后在我的类中访问该文件。
我尝试了以下路径但没有成功。
new File("/src/myxml.xml");
new File("src/myxml.xml");
new File("myxml.xml");
我如何访问该文件?
编辑:
- 我正在 Eclipse 中运行 tomcat 7 来运行我的 struts2
- 我在 /src/com.test.test.classes 中创建了一个类
- 我已经
在我的一个文件 的 /src 中上传了一个名为 myxml.xml 的 xml 文件/src/com.test.test.classes/ 中的类,如何访问 XML 文件?
I like to put an XML file in '/src' directory then access the file in my classes.
I tried the following paths but didn't work.
new File("/src/myxml.xml");
new File("src/myxml.xml");
new File("myxml.xml");
How do I access the file?
Edited:
- I'm running a tomcat 7 in Eclipse to run my struts2
- I've made a class in /src/com.test.test.classes
- I've uploaded an xml file called myxml.xml in /src
in one of my classes in /src/com.test.test.classes/, How do I access the XML file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有说明您是如何运行该程序的,这使得提供帮助变得更加困难。这是一堆问答。 A&建议,任何建议都可以解决问题,具体取决于问题的实际情况。
You don't say how you're running the program, which makes it substantially more difficult to be helpful. Here's a bunch of Q & A & Suggestions, any of which will solve the problem, depending on what the problem actually is.