我在解析一些json数据,获取InvalidCastExceptions等方面遇到了问题.
谁能指出我正确的方向?
这是我想要反序列化的json;
[{“OrderId”:0,”Name”:”Summary”,”MaxLen”:”200″},{“OrderId”:1,”Name”:”Details”,”MaxLen”:”0″}]
这是我的代码;
Public Class jsTextArea Public OrderId As Integer Public Name As String Public MaxLen As String End Class Dim js As New System.Web.Script.Serialization.JavaScriptSerializer Dim rawdata = js.DeserializeObject(textAreaJson) Dim lstTextAreas As List(Of jsTextArea) = CType(rawdata,List(Of jsTextArea))
OrderId是你的json中的一个Int(请注意缺少围绕值的引号),但你在“jsTextArea”中将它声明为String.此外,除非返回rawdata的类型具有对List(Of jsTextArea)的强制转换,否则它可能不会显示您所显示的代码.
原文链接:https://www.f2er.com/vb/255761.html更新
要将数据输出到List(Of jsTextArea),请尝试以下操作:
Dim js As New System.Web.Script.Serialization.JavaScriptSerializer Dim lstTextAreas = js.Deserialize(Of List(Of jsTextArea))(textAreaJson)