如何在没有绝对路径的情况下在 Netbeans 中使用 XML 作为数据库?

发布于 2024-11-18 16:34:46 字数 310 浏览 5 评论 0原文

由于工作原因,必须使用XML文件作为数据库。目前只有两个:products.xml 和 users.xml。两个 XML 都不会存储太多信息。我们使用的是 Netbeans 7.0 和 Tomcat 7.0.11。

问题是,当尝试访问文件进行读写时,我们必须使用绝对路径:C:/../../../Project_Name/DATA/products.xml。但是,我们必须做到这一点,以便可以通过相对路径访问 XML 文件:/DATA/products.xml。有办法这样做吗?

我知道使用数据库可能会让事情变得更容易,但这不是一个选择。

感谢您的任何帮助。

Due to work, I have to use XML files as a database. There are only two of them at the moment: products.xml and users.xml. Both XMLs won't be storing much information. We are using Netbeans 7.0 and Tomcat 7.0.11.

The problem is that when trying to access the files to read AND write, we have to use an absolute path: C:/../../../Project_Name/DATA/products.xml. However, we have to make it so that the XML files can be accessed with a relative path: /DATA/products.xml. Is there a way to do so?

I am aware that using a database would probably make things much easier, however that is not an option.

Thanks for any help.

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

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

发布评论

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

评论(1

说不完的你爱 2024-11-25 16:34:46

您可以将文件放入类路径中并使用 Classloader.getResourceAsStream 访问它们。

You can put the files in your classpath and access them with Classloader.getResourceAsStream.

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