gpt4 book ai didi

c# - JSON 字符串解析错误。 System.Exception {Newtonsoft.Json.JsonReaderException}

转载 作者:太空宇宙 更新时间:2023-11-03 20:07:42 25 4
gpt4 key购买 nike

我有以下字符串。我收到以下错误。你能告诉我哪里出了问题吗?

Unexpected character encountered while parsing value: C. Path '', line 0, position 0.
JsonTextReader error: System.Exception {Newtonsoft.Json.JsonReaderException}

这是我从客户端获取的 JSON 字符串。

Content-Type: application/json
Content-Disposition: attachment; filename="postData.json"

{"name":"test44","age":"66","gender":"B","dob":"10\/10\/2003","file":null}

这是我使用 JSON.NET 进行解析的代码。

JsonTextReader reader = new JsonTextReader(new StringReader(json));
while (reader.Read())
{
if (reader.Value != null)
Console.WriteLine("Token: {0}, Value: {1}", reader.TokenType, reader.Value);
else
Console.WriteLine("Token: {0}", reader.TokenType);
}

最佳答案

您已经在 J​​SON 字符串中包含了 HTTP header - 您不需要这些。您的 json 值应该只是是这样的:

{"name":"test44","age":"66","gender":"B","dob":"10\/10\/2003","file":null}

我已经测试了您的代码,当包含 header 时,我得到了与您相同的异常,但没有它们也没关系。

您应该首先查看接收数据的方式 - 仅将这两个 header 与正文一起获取通常会很奇怪。您还没有告诉我们客户端是如何提供数据的,但是如果他们在应该只提供正文的地方提供这些 header ,那么这是一个客户端错误。

关于c# - JSON 字符串解析错误。 System.Exception {Newtonsoft.Json.JsonReaderException},我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21998758/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com