From 3afee455293e999423f45d331c2df2f457fa9b3b Mon Sep 17 00:00:00 2001 From: Longfeng Qin Date: Mon, 9 Dec 2024 12:23:27 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96Json=E8=AF=BB=E5=8F=96?= =?UTF-8?q?=E5=92=8C=E6=B5=8B=E8=AF=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Server/Json/JsonRead.cs | 106 ++++++++++++++++++++++++++++++++++++++++ Server/Json/JsonTest.cs | 26 ++-------- Server/Program.cs | 4 +- Server/Server.csproj | 1 + 4 files changed, 112 insertions(+), 25 deletions(-) create mode 100644 Server/Json/JsonRead.cs diff --git a/Server/Json/JsonRead.cs b/Server/Json/JsonRead.cs new file mode 100644 index 0000000..22842e8 --- /dev/null +++ b/Server/Json/JsonRead.cs @@ -0,0 +1,106 @@ +using Newtonsoft.Json; +using System; +using System.IO; +using System.Collections.Generic; +using System.Threading.Tasks; + +namespace PSO2SERVER.Json +{ + public class JsonRead + { + // 泛型方法:读取并反序列化 JSON 文件 + public static async Task DeserializeJsonAsync(string filePath, JsonSerializerSettings settings = null) + { + if (string.IsNullOrEmpty(filePath)) + { + Logger.Write("文件路径不能为空"); + return default(T); + } + + if (!File.Exists(filePath)) + { + Logger.Write($"文件不存在: {filePath}"); + return default(T); + } + + try + { + // 异步读取文件内容 + string json = await Task.Run(() => File.ReadAllText(filePath)); + + // 如果文件内容为空,记录日志并返回默认值 + if (string.IsNullOrWhiteSpace(json)) + { + Logger.Write($"文件内容为空: {filePath}"); + return default(T); + } + + // 反序列化 JSON + return JsonConvert.DeserializeObject(json, settings ?? new JsonSerializerSettings()); + } + catch (JsonException jsonEx) + { + // 捕获 JSON 反序列化异常 + Logger.Write($"JSON 反序列化错误:{jsonEx.Message} 文件: {filePath}"); + return default(T); + } + catch (FileNotFoundException fnfEx) + { + // 捕获文件找不到异常 + Logger.Write($"文件未找到错误:{fnfEx.Message} 文件: {filePath}"); + return default(T); + } + catch (UnauthorizedAccessException uaEx) + { + // 捕获权限相关的异常 + Logger.Write($"权限错误:{uaEx.Message} 文件: {filePath}"); + return default(T); + } + catch (Exception ex) + { + // 捕获其他未知异常 + Logger.Write($"读取或反序列化文件 {filePath} 时发生异常: {ex.Message}"); + return default(T); + } + } + + // 同步版本:用于不需要异步操作的场景 + public static T DeserializeJson(string filePath, JsonSerializerSettings settings = null) + { + if (string.IsNullOrEmpty(filePath)) + { + Logger.Write("文件路径不能为空"); + return default(T); + } + + if (!File.Exists(filePath)) + { + Logger.Write($"文件不存在: {filePath}"); + return default(T); + } + + try + { + string json = File.ReadAllText(filePath); + + if (string.IsNullOrWhiteSpace(json)) + { + Logger.Write($"文件内容为空: {filePath}"); + return default(T); + } + + return JsonConvert.DeserializeObject(json, settings ?? new JsonSerializerSettings()); + } + catch (JsonException jsonEx) + { + Logger.Write($"JSON 反序列化错误:{jsonEx.Message} 文件: {filePath}"); + return default(T); + } + catch (Exception ex) + { + Logger.Write($"读取或反序列化文件 {filePath} 时发生异常: {ex.Message}"); + return default(T); + } + } + } +} diff --git a/Server/Json/JsonTest.cs b/Server/Json/JsonTest.cs index 280213b..56e95b5 100644 --- a/Server/Json/JsonTest.cs +++ b/Server/Json/JsonTest.cs @@ -19,9 +19,9 @@ namespace PSO2SERVER.Json string jsonFilePath3 = "data\\item_attrs.json"; // 读取并反序列化 JSON 文件 - var map = DeserializeJson(jsonFilePath1); - var mapEvent = DeserializeJson>(jsonFilePath2)?.FirstOrDefault(); - var attributes = DeserializeJson(jsonFilePath3); + var map = JsonRead.DeserializeJson(jsonFilePath1); + var mapEvent = JsonRead.DeserializeJson>(jsonFilePath2)?.FirstOrDefault(); + var attributes = JsonRead.DeserializeJson(jsonFilePath3); // 输出 MapData 信息 if (map != null) @@ -48,25 +48,5 @@ namespace PSO2SERVER.Json } } - // 泛型方法:读取并反序列化 JSON 文件 - public static T DeserializeJson(string filePath) - { - if (!File.Exists(filePath)) - { - Logger.Write($"文件不存在: {filePath}"); - return default(T); - } - - try - { - string json = File.ReadAllText(filePath); - return JsonConvert.DeserializeObject(json); - } - catch (Exception ex) - { - Logger.Write($"错误:读取或反序列化文件 {filePath} 时发生异常: {ex.Message}"); - return default(T); - } - } } } diff --git a/Server/Program.cs b/Server/Program.cs index 7c817ee..b37f280 100644 --- a/Server/Program.cs +++ b/Server/Program.cs @@ -26,12 +26,12 @@ namespace PSO2SERVER public static ServerApp Instance { get; private set; } // Will be using these around the app later [KeyPhact] - public const string ServerName = "Phantasy Star Online 2 Server"; + public const string ServerName = "梦幻之星OL2 服务端"; public const string ServerShortName = "PSO2"; public const string ServerAuthor = "Sancaros (https://github.com/Sancaros/PSO2SERVER)"; public const string ServerCopyright = "(C) 2024 Sancaros."; public const string ServerLicense = "All licenced under AGPL."; - public const string ServerVersion = "v0.1.2"; + public const string ServerVersion = "v0.1.3"; public const string ServerVersionName = "Sancaros"; public const int ServerShipProtNums = 10; diff --git a/Server/Server.csproj b/Server/Server.csproj index 5b8ff4f..cf60f10 100644 --- a/Server/Server.csproj +++ b/Server/Server.csproj @@ -302,6 +302,7 @@ +