如何在没有绝对路径的情况下在 Netbeans 中使用 XML 作为数据库?
由于工作原因,必须使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将文件放入类路径中并使用 Classloader.getResourceAsStream 访问它们。
You can put the files in your classpath and access them with
Classloader.getResourceAsStream
.