vb.net解析json
如何在 vb.net 应用程序中解析来自 Twitter 等的 json。
How can I parse json from such as twitter etc in vb.net applications.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 vb.net 应用程序中解析来自 Twitter 等的 json。
How can I parse json from such as twitter etc in vb.net applications.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
使用 System.Runtime.Serialization.Json 命名空间的 DataContractJsonSerializer 类。您可以使用它的 ReadObject 方法来反序列化 JSON 流。
Use the DataContractJsonSerializer class of the System.Runtime.Serialization.Json namespace. You can use it's ReadObject method to deserialize the JSON stream.
您可以使用 JSon.Net 库。我从未在 VB.net 上使用过它,但我认为它符合 CLS,并且应该可以正常工作。
You can use the JSon.Net library. I've never used it from VB.net but I assume it's CLS-compliant and it should work OK.