如何使用 XML 存储和检索对象?
我有一个名为 Word
的类,具有以下四个属性:text
、caseSensitive
、matchSimilar
和 relevance< /代码>。
我对这些词有 10 个类别:(allowDetermining
、allowHigh
、...、denyDetermining
、denyHigh
等.)。
我希望能够存储每个类别的新单词或从某个类别检索所有单词。我该怎么办呢。
我认为 XML 结构应该是这样的,但我不知道我是否正确:
<allowDetermining>
<word>
<text>Renato</text>
<caseSensitive>true</caseSensitive>
<matchSimilar>false</matchSimilar>
<relevance>0.75</relevance>
</word>
</allowDetermining>
<allowHigh>
...
</allowHigh>
...
目前,我正在使用 Apache Commons Configuration
中的 XMLConfiguration
类>。知道如何使用它吗?还有另一个图书馆吗?
I have a class called Word
with these four attributes: text
, caseSensitive
, matchSimilar
and relevance
.
I have 10 categories for these words: (allowDetermining
,allowHigh
,...,denyDetermining
,denyHigh
,etc.).
I want to be able to store new words on each categories or retrieve all words from some category. How can I do this.
I think the XML structure should be like this, but I don't know if I'm right:
<allowDetermining>
<word>
<text>Renato</text>
<caseSensitive>true</caseSensitive>
<matchSimilar>false</matchSimilar>
<relevance>0.75</relevance>
</word>
</allowDetermining>
<allowHigh>
...
</allowHigh>
...
At the moment, I'm using the XMLConfiguration
class from Apache Commons Configuration
. Any idea of how do this using it? And with another library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 XML 是一项要求,还是只是您的第一个想法?对于持久化配置数据或工作集,JSON(数据)或 YAML(配置)可能更有意义并且也更容易做到。 XML 对于其原始用例(文本标记)效果更好,但对于面向数据的东西,它很快就失宠了,这是有充分理由的。
Is use of XML a requirement, or just your first idea? For persisting configuration data or working sets, JSON (data) or YAML (configuration) might make more sense and be bit easier to do as well. XML works better for its original use case (text markup), but for data-oriented stuff it is quickly falling out of favor, and for good reason.