.net 실체 클래스 와 json 상호 변환
1.jsonhelp 작성 시 추 가 된 인용.System.Runtime.Serialization.Json;
2.실체 클래스 는 Public 로 선언 해 야 합 니 다.
jsonhelp 코드:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.Serialization.Json;
using System.IO;
namespace JsonTest
{
class JsonHelp
{
public JsonHelp()
{
//
// TODO: Add constructor logic here
//
}
/// <summary>
/// JSON
/// </summary>
/// <typeparam name="T"> </typeparam>
/// <param name="obj"> </param>
/// <returns>JSON </returns>
public static string GetJson<T>(T obj)
{
// System.ServiceModel.Web
/**
* ,System.Runtime.Serialization.Json; Json
* */
DataContractJsonSerializer json = new DataContractJsonSerializer(typeof(T));
using (MemoryStream ms = new MemoryStream())
{
json.WriteObject(ms, obj);
string szJson = Encoding.UTF8.GetString(ms.ToArray());
return szJson;
}
}
/// <summary>
/// JSON
/// </summary>
/// <typeparam name="T"> </typeparam>
/// <param name="szJson">JSON </param>
/// <returns> </returns>
public static T ParseFormJson<T>(string szJson)
{
T obj = Activator.CreateInstance<T>();
using (MemoryStream ms = new MemoryStream (Encoding.UTF8.GetBytes(szJson)))
{
DataContractJsonSerializer dcj = new DataContractJsonSerializer(typeof(T));
return (T)dcj.ReadObject(ms);
}
}
}
}
실체 클래스 코드:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JsonTest
{
public class testData
{
public testData()
{
}
public int Id { get; set; }
public string Name { get; set; }
public string Sex { get; set; }
}
}
콘 솔 응용 프로그램 테스트 코드:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JsonTest
{
class Program
{
static void Main(string[] args)
{
// json
testData t1 = new testData();
t1.Id = 1;
t1.Name = "001 ";
t1.Sex = " ";
testData t2 = new testData();
t2.Id = 2;
t2.Name = "002 ";
t2.Sex = " ";
testData t3 = new testData();
t3.Id = 3;
t3.Name = "003 ";
t3.Sex = " ";
List<testData> tlist = new List<testData>();
tlist.Add(t1);
tlist.Add(t2);
tlist.Add(t3);
Console.WriteLine(JsonHelp.GetJson<List<testData>>(tlist));
// Console.ReadKey();
//json
List<testData> tl = JsonHelp.ParseFormJson <List<testData>>(JsonHelp.GetJson<List<testData>>(tlist));
Console.WriteLine(tl.Count);
Console.WriteLine(tl[0].Name);
Console.ReadKey();
}
}
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
AS를 통한 Module 개발1. ModuleLoader 사용 2. IModuleInfo 사용 ASModuleOne 모듈...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.