Java/Android 中的 .NET XMLSerializer 等效项?
我在 Google 上搜索了 Android 中的 XMLSerializer,但发现它与 .NET 完全不同。我需要的是,从可序列化类中,我可以将它们写入 XML 文件,然后读取 XML 文件以自动返回类的属性值。
我需要它是因为:我正在为 Android 创建一个游戏,有很多设置和关卡,所以我通过 .NET 制作的编辑器来设计它们。现在我希望编辑器(通过.NET)和游戏(通过Java/Android SDK)都可以读取XML文件。类应该完全相同(所有属性、方法、名称……)。
感谢您的阅读。
I've Googled the XMLSerializer in Android, but I found it's totally different from .NET. What I need is that, from a Serializable Class, I can write them to a XML file, and then read the XML file to return the class's properties values automically.
I need that because: I'm creating a game for Android, with a lot of settings and levels, so I design them by a editor made by .NET. Now I want that the XML file can be read by both the editor (by .NET) and the game (by Java/Android SDK). The class should be totally the same (all the properties, methods, names, ...).
Thanks for reading.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看此答案。听起来类似于 jackson 解析器绑定,它可以将 Java 对象和 bean 序列化到 JSON 或从 JSON 反序列化。
Check out this answer. Sounds similar to the jackson parser bindings, which can serialize and unserialize Java objects and beans to/from JSON.