63 lines
1.9 KiB
C#
63 lines
1.9 KiB
C#
using System.IO;
|
|
using System.Text.Encodings.Web;
|
|
using System.Text.Json;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ColdMint.scripts.serialization;
|
|
|
|
public static class JsonSerialization
|
|
{
|
|
private static JsonSerializerOptions _options = new JsonSerializerOptions
|
|
{
|
|
//Case-insensitive attribute matching
|
|
//不区分大小写的属性匹配
|
|
PropertyNameCaseInsensitive = true,
|
|
//Try to avoid escape
|
|
//尽量避免转义
|
|
Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping,
|
|
//Enable smart Print
|
|
//启用漂亮打印
|
|
WriteIndented = true
|
|
};
|
|
|
|
/// <summary>
|
|
/// <para>Read a Json file to type T</para>
|
|
/// <para>读取一个Json文件到T类型</para>
|
|
/// </summary>
|
|
/// <param name="path"></param>
|
|
/// <typeparam name="T"></typeparam>
|
|
/// <returns></returns>
|
|
public static async Task<T?> ReadJsonFileToObj<T>(string path)
|
|
{
|
|
await using var openStream = File.OpenRead(path);
|
|
return await JsonSerializer.DeserializeAsync<T>(openStream, _options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// <para>Serialize the object to Json</para>
|
|
/// <para>将对象序列化为Json</para>
|
|
/// </summary>
|
|
/// <param name="obj"></param>
|
|
/// <returns></returns>
|
|
public static string Serialize(object obj)
|
|
{
|
|
return JsonSerializer.Serialize(obj, _options);
|
|
}
|
|
|
|
/// <summary>
|
|
/// <para>Deserialize Json to an object</para>
|
|
/// <para>将Json反序列化为对象</para>
|
|
/// </summary>
|
|
/// <param name="json"></param>
|
|
/// <typeparam name="T"></typeparam>
|
|
/// <returns></returns>
|
|
public static T? Deserialize<T>(string json)
|
|
{
|
|
return JsonSerializer.Deserialize<T>(json, _options);
|
|
}
|
|
|
|
public static async Task<T?> ReadJsonFileToObj<T>(Stream openStream)
|
|
{
|
|
return await JsonSerializer.DeserializeAsync<T>(openStream, _options);
|
|
}
|
|
} |