using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Reflection;
using System.Collections;
using System.Data.Common;
namespace CallCenter.Utility
{
//JSON转换类
public class ConvertJson
{
#region 私有方法
///
/// 过滤特殊字符
///
private static string String2Json(String s)
{
var sb = new StringBuilder();
for (int i = 0; i < s.Length; i++)
{
char c = s.ToCharArray()[i];
switch (c)
{
case '\"':
sb.Append("\\\""); break;
case '\\':
sb.Append("\\\\"); break;
case '/':
sb.Append("\\/"); break;
case '\b':
sb.Append("\\b"); break;
case '\f':
sb.Append("\\f"); break;
case '\n':
sb.Append("\\n"); break;
case '\r':
sb.Append("\\r"); break;
case '\t':
sb.Append("\\t"); break;
default:
sb.Append(c); break;
}
}
return sb.ToString();
}
///
/// 格式化字符型、日期型、布尔型
///
private static string StringFormat(string str, Type type)
{
if (type == typeof(string))
{
str = String2Json(str);
str = "\"" + str + "\"";
}
else if (type == typeof(DateTime))
{
str = "\"" + str + "\"";
}
else if (type == typeof(bool))
{
str = str.ToLower();
}
else if (type != typeof(string) && string.IsNullOrEmpty(str))
{
str = "\"" + str + "\"";
}
return str;
}
#endregion
#region List转换成Json
///
/// List转换成Json
///
public static string ListToJson(IList list)
{
object obj = list[0];
return ListToJson(list, obj.GetType().Name);
}
///
/// List转换成Json
///
public static string ListToJson(IList list, string jsonName)
{
var Json = new StringBuilder();
if (string.IsNullOrEmpty(jsonName)) jsonName = list[0].GetType().Name;
Json.Append("{\"" + jsonName + "\":[");
if (list.Count > 0)
{
for (int i = 0; i < list.Count; i++)
{
var obj = Activator.CreateInstance();
PropertyInfo[] pi = obj.GetType().GetProperties();
Json.Append("{");
for (int j = 0; j < pi.Length; j++)
{
Type type = pi[j].GetValue(list[i], null).GetType();
Json.Append("\"" + pi[j].Name + "\":" + StringFormat(pi[j].GetValue(list[i], null).ToString(), type));
if (j < pi.Length - 1)
{
Json.Append(",");
}
}
Json.Append("}");
if (i < list.Count - 1)
{
Json.Append(",");
}
}
}
Json.Append("]}");
return Json.ToString();
}
#endregion
#region 对象转换为Json
///
/// 对象转换为Json
///
/// 对象
/// Json字符串
public static string ToJson(object jsonObject)
{
var jsonString = "{";
var propertyInfo = jsonObject.GetType().GetProperties();
foreach (var t in propertyInfo)
{
object objectValue = t.GetGetMethod().Invoke(jsonObject, null);
string value = string.Empty;
if (objectValue is DateTime || objectValue is Guid || objectValue is TimeSpan)
{
value = "'" + objectValue + "'";
}
else if (objectValue is string)
{
value = "'" + ToJson(objectValue.ToString()) + "'";
}
else
{
var o = objectValue as IEnumerable;
value = o != null ? ToJson(o) : ToJson(objectValue.ToString());
}
jsonString += "\"" + ToJson(t.Name) + "\":" + value + ",";
}
return jsonString.Remove(jsonString.Length - 1, jsonString.Length) + "}";
}
#endregion
#region 对象集合转换Json
///
/// 对象集合转换Json
///
/// 集合对象
/// Json字符串
public static string ToJson(IEnumerable array)
{
string jsonString = array.Cast