一、保存文件
            //将对象序列化成Json字符串(明文)
            string json = System.Text.Json.JsonSerializer.Serialize(configModel);
            //将Json明文字符进行Base64加密
            byte[] jsonBytes = Encoding.UTF8.GetBytes(json);
            string b64Str = Convert.ToBase64String(jsonBytes);
            //写入文件
            File.WriteAllText("config.data", b64Str);






            二、从文件还原数据
            //从文件中读出内容(加密)
            string b64Strs = File.ReadAllText("config.data");
            //从加密内容解密配置的Json字符串
            byte[] readBytes = Convert.FromBase64String(b64Strs);
            string jsonStrs = Encoding.UTF8.GetString(readBytes);
            //反序列化对象实例
            configModel = JsonSerializer.Deserialize<ConfigModel&gt;(jsonStrs);





关于Json的序列化,对于Framework环境无法使用JsonSerializer
可以使用Newtonsoft.Json

            一、保存到文件
            //将对象序列化成Json字符串(明文)
            string json = JsonConvert.SerializeObject(configModel);
            //将Json明文字符进行Base64加密
            byte[] jsonBytes = Encoding.UTF8.GetBytes(json);
            string b64Str = Convert.ToBase64String(jsonBytes);
            //写入文件
            File.WriteAllText("config.data", b64Str);






            二、从文件还原数据
            //从文件中读出内容(加密)
            string b64Strs = File.ReadAllText("config.data");
            //从加密内容解密配置的Json字符串
            byte[] readBytes = Convert.FromBase64String(b64Strs);
            string jsonStrs = Encoding.UTF8.GetString(readBytes);
            //反序列化成对象实例
            configModel = JsonConvert.DeserializeObject<ConfigModel>(jsonStrs);





 

原文地址:https://blog.csdn.net/a876106354/article/details/134775525

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_38956.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注