如何使用 XML 存储和检索对象?

发布于 2024-12-04 19:02:55 字数 848 浏览 2 评论 0原文

我有一个名为 Word 的类,具有以下四个属性:textcaseSensitivematchSimilarrelevance< /代码>。

我对这些词有 10 个类别:(allowDeterminingallowHigh、...、denyDeterminingdenyHigh 等.)。

我希望能够存储每个类别的新单词或从某个类别检索所有单词。我该怎么办呢。

我认为 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 技术交流群。

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

发布评论

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

评论(1

最后的乘客 2024-12-11 19:02:55

使用 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.

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