You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.0 KiB
43 lines
1.0 KiB
/*
|
|
Sog 游戏基础库
|
|
2016 by zouwei
|
|
*/
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using System.Runtime.Serialization.Json;
|
|
|
|
using System.IO;
|
|
using System.Text;
|
|
|
|
namespace SogClient
|
|
{
|
|
public static class JsonConfig
|
|
{
|
|
public static T parse<T>(string jsonString)
|
|
{
|
|
using (var ms = new MemoryStream(Encoding.UTF8.GetBytes(jsonString)))
|
|
{
|
|
return (T)new DataContractJsonSerializer(typeof(T)).ReadObject(ms);
|
|
}
|
|
}
|
|
|
|
public static T parseFile<T>(string filePathName)
|
|
{
|
|
string jsonString = File.ReadAllText(filePathName);
|
|
|
|
return parse<T>(jsonString);
|
|
}
|
|
|
|
public static string stringify(object jsonObject)
|
|
{
|
|
using (var ms = new MemoryStream())
|
|
{
|
|
new DataContractJsonSerializer(jsonObject.GetType()).WriteObject(ms, jsonObject);
|
|
return Encoding.UTF8.GetString(ms.ToArray());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|