如何在 ASP.NET 中从 json 反序列化基本类型(System.Runtime.Serialization.Json)
我有一个小问题。 当我将 DataContractJsonSerializer 与复杂类型(自己的类型)一起使用时,它工作正常。但我必须从字符串反序列化 TimeStamp 或 DateTime 。所以我无法用 DataContract、DataMember 属性标记这些类型。
我写了一些代码
string jsonedTS = "PT2M15S";
DataContractJsonSerializer jsonSerializer = new DataContractJsonSerializer(typeof(TimeSpan));
MemoryStream ms = new MemoryStream(Encoding.UTF8.GetBytes(jsonedTS));
try {
result.Takes = (TimeSpan) jsonSerializer.ReadObject(ms);
} catch {
;
}
并且捕获了这个异常
{“反序列化 System.TimeSpan 类型的对象时出错。遇到意外字符 'P'。”} System.Exception {System.Runtime.Serialization.SerializationException}
我的问题是 我怎样才能反序列化
I have a little problem.
When I'm using DataContractJsonSerializer
with complex types(own types) it works fine. But I have to deserialize TimeStamp or DateTime from a string. So I cant mark these types with DataContract, DataMember attributes.
I wrote some code
string jsonedTS = "PT2M15S";
DataContractJsonSerializer jsonSerializer = new DataContractJsonSerializer(typeof(TimeSpan));
MemoryStream ms = new MemoryStream(Encoding.UTF8.GetBytes(jsonedTS));
try {
result.Takes = (TimeSpan) jsonSerializer.ReadObject(ms);
} catch {
;
}
And I catch this Exception
{"There was an error deserializing the object of type System.TimeSpan. Encountered unexpected character 'P'."} System.Exception {System.Runtime.Serialization.SerializationException}
And My Question IS
How Can I deserialize
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 Json.Net 库 - 它对我们来说效果很好过去。
You can try with Json.Net library - it's worked pretty well for us in the past.