Newtonsoft json反序列化错误处理:部分反序列化
本文关键字:反序列化 错误 json Newtonsoft 处理 | 更新日期: 2023-09-27 18:06:05
是否有反序列化无效json的方法?
例如,下一个JSON反序列化将失败的JsonReaderException
{
'sessionId': 's0j1',
'commandId': 19,
'options': invalidValue // invalid value
}
,因为options
属性值无效。
是否有一个很好的方法来获得sessionId
和commandId
值,即使options
值无效?
我知道在反序列化过程中可以处理错误(http://www.newtonsoft.com/json/help/html/SerializationErrorHandling.htm)
var json = "{'sessionId': 's0j1', 'commandId': 19, 'options': invalidValue}";
var settings = new JsonSerializerSettings
{
Error = delegate(object sender, ErrorEventArgs args)
{
args.ErrorContext.Handled = true;
}
});
var result = JsonConvert.DeserializeObject(json, settings);
Bit = result = null
您可以使用JsonReader
。
示例代码:
var result = new Dictionary<string, object>();
using (var reader = new JsonTextReader(new StringReader(yourJsonString)))
{
var lastProp = string.Empty;
try
{
while (reader.Read())
{
if (reader.TokenType == JsonToken.PropertyName)
{
lastProp = reader.Value.ToString();
}
if (reader.TokenType == JsonToken.Integer ||
reader.TokenType == JsonToken.String)
{
result.Add(lastProp, reader.Value);
}
}
}
catch(JsonReaderException jre)
{
//do anything what you want with exception
}
}
注意,存在try..catch
块,因为当JsonReader
遇到无效字符时,它会在reader.Read()
上抛出JsonReaderException