在 Mono 中反序列化 JSON 数据
使用 Monodroid 时,是否有一种简单的方法可以将简单的 JSON 字符串反序列化为 .NET 对象? System.Json 仅提供序列化(不提供反序列化),我尝试过的各种第三方库都导致 Mono/Monodroid 出现问题。 谢谢。
Is there an easy way to deserialize a simple JSON string into a .NET object when using Monodroid? System.Json only provides serialization (no deserialization) and the various third party libs I've tried were all causing problems with Mono/Monodroid.
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
fastJSON 适合这个要求。获取所需的文件(Getters.cs、JSON.cs、JsonParser.cs、JsonSerializer.cs、SafeDictionary.cs)并将它们嵌入到您的项目中并使用它。它不使用任何花哨的 .NET 特定类,因此它应该与 MonoDroid 或 Silverlight 一起使用。
fastJSON suits the bill. Grab the required files (Getters.cs, JSON.cs, JsonParser.cs, JsonSerializer.cs, SafeDictionary.cs) and embed them in your project and use it. It doesn't use any fancy .NET specific class so it should work with MonoDroid or Silverlight.