读取json文件,根据key取对应value
程序集添加Newtonsoft.Json.Linq;
Newtonsoft.Json.dll文件下载:
链接:百度网盘 提取码:htq8
private string readjson(string jsonfile, string key)
{
string json = File.ReadAllText(jsonfile);
JObject jobject = JObject.Parse(json);
foreach (var item in jobject)
{
if (item.Key == key)
return item.Value.ToString();
}
return null;
}