Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 XML 代码(数据表单数据库),我想将这些数据从 XML 移动到光标或数组列表之类的东西。有可能的?怎么做?
由于您可能知道该结构,因此您似乎可以使用 XStream。
类似问题:如何将 XML 转换为 java 值对象?
Android 中有很多库可以使用,还有很多外部 XML 库。XML Pull Parser 和 SAX Parsers 是 Android 自带的,据我所知至少是从 1.6 开始的。XML Pull 解析器更类似于 C,而 SAX 解析器更类似于 Java。还有 DOM 解析器。
我最终在一个项目中使用了 SAX 解析器,并使用了 Stack 来跟踪我在 XML 树中的位置。