• 大小: 930B
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-26
  • 语言: C#
  • 标签: c#  JSONHelper  工具类  

资源简介

再也不用为转换json 格式数据烦恼了

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace Weixin.Common
{
    public static class JSonhelper
    {
        /// 
        /// 转换对象为JSON格式数据
        /// 

        /// 
        /// 对象
        /// 字符格式的JSON数据
        public static string GetJSON(object obj)
        {
            string result = String.Empty;
            try
            {
                System.Runtime.Serialization.Json.DataContractJsonSerializer serializer =
                new System.Runtime.Serialization.Json.DataContractJsonSerializer(typeof(T));
                using (System.IO.MemoryStream ms = new System.IO.MemoryStream())
                {
                    serializer.Writeobject(ms obj);
                    result = System.Text.Encoding.UTF8.GetString(ms.ToArray());
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
            return result;
        }
        /// 
        /// 转换List的数据为JSON格式
        /// 

        /// 
        /// 列表值
        /// JSON格式数据
        public static string JSON(List vals)
        {
            System.Text.StringBuilder st = new System.Text.StringBuilder();
            try
            {
                System.Runtime.Serialization.Json.DataContractJsonSerializer s = new System.Runtime.Serialization.Json.DataContractJsonSerializer(typeof(T));

                foreach (T city in vals)
                {
                    using (System.IO.MemoryStream ms = new System.IO.MemoryStream())
                    {
                        s.Writeobject(ms city);
                        st.Append(System.Text.Encoding.UTF8.GetString(ms.ToArray()));
                    }
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return st.ToString();
        }
        /// 
        /// JSON格式字符转换为T类型的对象
        /// 

        /// 
        /// 
        /// 
        public static T ParseFormByJson(string jsonStr)
        {
            T obj = Activator.CreateInstance();
            using (System.IO.MemoryStream ms =
            new System.IO.MemoryStream(System.Text.Encoding.UTF8.GetBytes(jsonStr)))
            {
                System.Runtime.Serialization.Json.DataContractJsonSerializer serializer =
                new System.Runtime.Serialization.Json.DataContractJsonSerializer(typeof(T));
                return (T)serializer.Readobject(ms);
            }
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        2987  2014-11-10 17:42  JSonhelper.cs

评论

共有 条评论