溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用DataContractJsonSerializer進行JSON序列化的JSONHelper類

發(fā)布時間:2020-08-02 18:10:16 來源:網(wǎng)絡 閱讀:758 作者:zhangyah 欄目:編程語言
public static class JSONHelper
{
/// <summary>
/// 將對象轉(zhuǎn)化為Json字符串
/// </summary>
/// <typeparam name="T">對象類型</typeparam>
/// <param name="instanse">對象本身</param>
/// <returns>JSON字符串</returns>
public static string Serializer<T>(this T instanse)
{
try
{
DataContractJsonSerializer js = new DataContractJsonSerializer(typeof(T));
using (MemoryStream ms = new MemoryStream())
{
js.WriteObject(ms, instanse);
ms.Flush();
ms.Seek(0, SeekOrigin.Begin);
StreamReader sr = new StreamReader(ms);
return sr.ReadToEnd();
}
}
catch
{
return String.Empty;
}
}
/// <summary>
/// 將字符串轉(zhuǎn)化為JSON對象,如果轉(zhuǎn)換失敗,返回default(T)
/// </summary>
/// <typeparam name="T">對象類型</typeparam>
/// <param name="s">字符串</param>
/// <returns>轉(zhuǎn)換值</returns>
public static T Deserializer<T>(this string s)
{
try
{
DataContractJsonSerializer js = new DataContractJsonSerializer(typeof(T));
using (MemoryStream ms = new MemoryStream())
{
StreamWriter sw = new StreamWriter(ms);
sw.Write(s);
sw.Flush();
ms.Seek(0, SeekOrigin.Begin);
return (T)js.ReadObject(ms);
}
}
catch
{
return default(T);
}
}
}

 

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI