在.NET中Newtonsoft.Json(Json.NET)是我們常用來進行Json序列化與反序列化的庫。 而在使用中常會遇到反序列化Json時,遇到不規則的Json數據解構而拋出異常。 Newtonsoft.Json 支持序列化和反序列化過程中的錯誤處理。 允許您捕獲錯誤並選擇是處理它並繼續序列 ...
在.NET中Newtonsoft.Json(Json.NET)是我們常用來進行Json序列化與反序列化的庫。
而在使用中常會遇到反序列化Json時,遇到不規則的Json數據解構而拋出異常。
Newtonsoft.Json 支持序列化和反序列化過程中的錯誤處理。
允許您捕獲錯誤並選擇是處理它並繼續序列化,還是讓錯誤冒泡並拋出到您的應用程式中。
錯誤處理是通過兩種方法定義的: JsonSerializerSettings 上的ErrorEvent和OnErrorAttribute。
ErrorEvent
下麵是個ErrorEvent的例子,下麵的例子中我們既能正確反序列化列表中的事件類型,也能捕獲其中的錯誤事件
List<string> errors = new List<string>(); List<DateTime> c = JsonConvert.DeserializeObject<List<DateTime>>(@"[ '2009-09-09T00:00:00Z', 'I am not a date and will error!', [ 1 ], '1977-02-20T00:00:00Z', null, '2000-12-01T00:00:00Z' ]", new JsonSerializerSettings { Error = delegate(object sender, ErrorEventArgs args) { errors.Add(args.ErrorContext.Error.Message); args.ErrorContext.Handled = true; }, Converters = { new IsoDateTimeConverter() } }); // 2009-09-09T00:00:00Z // 1977-02-20T00:00:00Z // 2000-12-01T00:00:00Z
OnErrorAttribute
OnErrorAttribute的工作方式與 Newtonsoft.Json 的其他.NET 序列化屬性非常相似。
您只需將該屬性放置在採用正確參數的方法上:StreamingContext 和 ErrorContext。方法的名稱並不重要。
public class PersonError { private List<string> _roles; public string Name { get; set; } public int Age { get; set; } public List<string> Roles { get { if (_roles == null) { throw new Exception("Roles not loaded!"); } return _roles; } set { _roles = value; } } public string Title { get; set; } [OnError] internal void OnError(StreamingContext context, ErrorContext errorContext) { errorContext.Handled = true; } } PersonError person = new PersonError { Name = "George Michael Bluth", Age = 16, Roles = null, Title = "Mister Manager" }; string json = JsonConvert.SerializeObject(person, Formatting.Indented); Console.WriteLine(json); //{ // "Name": "George Michael Bluth", // "Age": 16, // "Title": "Mister Manager" //}