C# 读取.resx资源文件写入到json文件中(曹海涛)

网友投稿 1137 2022-09-20

C# 读取.resx资源文件写入到json文件中(曹海涛)

C# 读取.resx资源文件写入到json文件中(曹海涛)

//调用ResXResourceReader类,需要引用System.Windows.Forms.dll,下同

ResXResourceReader resxReader = new ResXResourceReader(@"资源文件路径");

IDictionaryEnumerator dict = resxReader.GetEnumerator();

StringBuilder jsonBuilder = new StringBuilder("{\"th_th\": {");

while (dict.MoveNext())

{

Console.WriteLine("{0},{1}", dict.Key, dict.Value);

jsonBuilder.Append("\"" + dict.Key + "\":\"" + dict.Value + "\",\n");

}

var jsonString = jsonBuilder.ToString().Substring(0, jsonBuilder.Length - 2) + "}}";

var path = Directory.GetCurrentDirectory();

File.WriteAllText(path + "/th_th.json", Regex.Unescape(jsonString));

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:定制开发小程序「定制开发小程序商城」
下一篇:历史上最伟大的12位程序员
相关文章

 发表评论

暂时没有评论,来抢沙发吧~