如何在 ASP.NET 中从 json 反序列化基本类型(System.Runtime.Serialization.Json)

发布于 2024-08-11 03:31:49 字数 660 浏览 6 评论 0原文

我有一个小问题。 当我将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

美男兮 2024-08-18 03:31:49

您可以尝试使用 Json.Net 库 - 它对我们来说效果很好过去。

You can try with Json.Net library - it's worked pretty well for us in the past.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文