博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c# 利用dynamic反序列化
阅读量:5866 次
发布时间:2019-06-19

本文共 724 字,大约阅读时间需要 2 分钟。

hot3.png

访问json文件,  直接输出总是带有  \  ,  很烦,  没去找别的方式, 直接范序列化再按照自己的方式输出

var countryFilePath = HttpContext.Current.Server.MapPath("~/Content/country.json"); using (StreamReader sr = File.OpenText(countryFilePath)) {     var json = sr.ReadToEnd();     resultMsg.statue = (int)StatueEnum.Success;        var newValue = JsonConvert.DeserializeObject
(json); var list=new List
(); for (int i = 0, ileng = newValue.Count; i < ileng; i++) { var item = newValue[i]; list.Add(new { code = item["code"].Value, en = item["en"].Value, cn = item["cn"].Value, }); } resultMsg.data = list; }

 

转载于:https://my.oschina.net/objectboy/blog/1523624

你可能感兴趣的文章
springboot项目文件上传(绝对路径)并使用tomcat虚拟路径进行图片预览
查看>>
poj1919--Red and Black (DFS)
查看>>
Convolution 中 group 参数
查看>>
第9章 异常处理与程序调试
查看>>
LeetCode - Rotate Array
查看>>
JSP/SERVLET重定向技术综述
查看>>
Linux命令行上传文件到百度网盘
查看>>
winform开发框架之模块维护
查看>>
鼠标顺时针旋转、逆时针旋转
查看>>
概率与统计习题
查看>>
导数几何意义应用思维导图【试编辑】
查看>>
MySQL:双引号和单引号
查看>>
HDU1556 Color the ball
查看>>
UOJ#419. 【集训队作业2018】圆形(格林公式)
查看>>
AT2534 港湾設備 (Port Facility)
查看>>
advacing lnux program --thread[copy]
查看>>
activity栈的关系
查看>>
如何在README.md文件中添加图片
查看>>
工作中搜索页面搜索记录功能的封装(存储到本地)
查看>>
Vue 项目骨架屏注入与实践
查看>>