我正试图在ASP.NET Core应用程序中使用Newtonsoft将JSON文件解析为对象,但我一直收到以下错误:
Newtonsoft.Json.JsonReaderException:"分析值时遇到意外字符:{.Path‘palette.swatch’,第7行,位置15。">
我已经尝试过使用StreamReader
类,现在是MemoryStream
类。我已经确认在线验证了JSON,并检查它是否也是UTF-8。两种方式我都收到相同的错误。我还手动检查了JSON,但我看不到任何会使其无法读取的内容。
以下是抛出异常的方法:
public async Task<int> PostDefinition(IFormFile file)
{
MemoryStream ms = new MemoryStream();
file.CopyTo(ms);
byte[] bytes = ms.ToArray();
string s = Encoding.UTF8.GetString(bytes);
Definition definition = Newtonsoft.Json.JsonConvert.DeserializeObject<Definition>(s);
Definition x = ObjectMapper.Map<Definition>(Definition);
return await _definitions.InsertAndGetIdAsync(x);
}
这是抛出错误的JSON段:
{
"name": "Definition",
"id": 2,
"palette": {
"name": "Test Palette",
"default": false,
"swatch": {
"colors": {
"Color 1": "transparent",
"Color 2": "transparent",
"Color 3": "transparent",
"Color 4": "transparent",
"Color 5": "transparent",
"Color 6": "transparent",
"Color 7": "transparent",
"Color 8": "transparent"
}
}
}
}
是什么原因导致了异常,我可以尝试如何补救?我试过搜索,但似乎什么都不起作用。
这对我有效
Definition definition = Newtonsoft.Json.JsonConvert.DeserializeObject<Definition>(s);
类
public partial class Definition
{
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("id")]
public long Id { get; set; }
[JsonProperty("palette")]
public Palette Palette { get; set; }
}
public partial class Palette
{
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("default")]
public bool Default { get; set; }
[JsonProperty("swatch")]
public Swatch Swatch { get; set; }
}
public partial class Swatch
{
[JsonProperty("colors")]
public Dictionary<string,string> Colors { get; set; }
}