Struts2中如何访问文件?

发布于 2024-12-05 18:32:13 字数 415 浏览 1 评论 0原文

我喜欢将 XML 文件放在“/src”目录中,然后在我的类中访问该文件。

我尝试了以下路径但没有成功。

new File("/src/myxml.xml");
new File("src/myxml.xml");
new File("myxml.xml");

我如何访问该文件?

编辑:

  1. 我正在 Eclipse 中运行 tomcat 7 来运行我的 struts2
  2. 我在 /src/com.test.test.classes 中创建了一个类
  3. 我已经

在我的一个文件 的 /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:

  1. I'm running a tomcat 7 in Eclipse to run my struts2
  2. I've made a class in /src/com.test.test.classes
  3. 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 技术交流群。

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

发布评论

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

评论(1

捶死心动 2024-12-12 18:32:13

您没有说明您是如何运行该程序的,这使得提供帮助变得更加困难。这是一堆问答。 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.

  • What's the working directory when you run it/what's the complete directory structure?
  • Can you just provide a full path or directory argument so you never have to worry about it?
  • What if you put the file on the classpath and access it as a resource?
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文