C# 通过JObject 读取 json对像
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
一、简单json对象
{"shp_flg": "0",
"fm_date": "2018-04-18T00:00:00Z",
"to_date": "2018-04-18T00:00:00Z",
"emp_no": "008",
"emp_nme_en": "Visitor 6",
"shift": "事假",
"work_time": 35,
"remark": "xyz"
}
var jObj = JObject.Parse(paramsStr); //paramsStr - json字符串
var shp_flg = jObj.Value<string>("shp_flg");
var fm_date = jObj.Value<DateTime>("fm_date").ToString("yyyy-MM-dd");
var to_date = jObj.Value<DateTime>("to_date").ToString("yyyy-MM-dd");
var emp_no = jObj.Value<string>("emp_no");
var shift = jObj.Value<string>("shift");
var work_time = jObj.Value<int>("work_time");
var remark = jObj.Value<string>("remark");
二、嵌套json对象
转自:
Newtonsoft.Json 通过 JObject 读取 json对像 超简单
/* json 格式的字符串解析 格式化 { "input": { "size": 193156, "type": "image/png" }, "output": { "size": 59646, "type": "image/png", "width": 487, "height": 284, "ratio": 0.3088, "url": "https://api.tinify.com/output/hrqtghqtv0ab4qgv.png" } } */ // json解析 嵌套格式 Newtonsoft.Json.Linq.JObject jobject = (Newtonsoft.Json.Linq.JObject)Newtonsoft.Json.JsonConvert.DeserializeObject(jsonText); decimal input_size = Convert.ToDecimal(jobject["input"]["size"]);//193156, 输入图片大小 string input_type = jobject["input"]["type"].ToString();// "image/png",输入图片类型 decimal output_size = Convert.ToDecimal(jobject["output"]["size"]);// 59646, 图片大小 string output_type = jobject["output"]["type"].ToString();//"image/png", 图片类型 string output_width = jobject["output"]["width"].ToString();//487, 宽度 string output_height = jobject["output"]["height"].ToString();//284, 高度 string output_ratio = jobject["output"]["ratio"].ToString();//0.3088, 压缩率=Convert.ToString((1-0.3088)*100)+"%"; string output_url = jobject["output"]["url"].ToString();//"https://api.tinify.com/output/hrqtghqtv0ab4qgv.png" WebEnh.Core.Net.HttpProc.WebClient wc = new WebEnh.Core.Net.HttpProc.WebClient(); wc.DownloadFile(output_url, download_filename);
GitHub 加速计划 / js / json
18
5
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:2 个月前 )
960b763e
5 个月前
8c391e04
8 个月前
更多推荐
已为社区贡献10条内容
所有评论(0)