实验目的
在c#和rest/restful以及其它的web服务交互过程中,大量使用到json传递数据,如何快捷的转化c#对象到json和转化json到c#对象,成为开发过程中频繁使用的内容。传统的方式下,我们需要定义和json对象同步的c#类并实例化成对象以遍操作,这里提供了一个直接使用匿名类的方式,相较于传统方式可以少定义一些类,操作更加简便。
开发环境
实现步骤
1.创建工程:控制台程序,命名为jsontest
2.添加组件:增加json组件
第一步:右键点击项目,选择“管理nuget程序包”菜单
第二步:在"nuget: jsontest"选项卡中选择浏览,输入json后回车,选择newtonsoft.json,选择版本后点击安装按钮。
第三步:完成安装
3.编写代码:简单结构
json格式如下:
1
2
3
4
5
|
{
"name" : "张三" ,
"sex" : "男" ,
"birthday" : "2018-02-09"
}
|
csharp代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
using newtonsoft.json;
using system;
namespace jsontest
{
class program
{
static void main( string [] args)
{
string jsonstr = jsonconvert.serializeobject( new
{
name = "张三" ,
sex = "男" ,
birthday = "2018-02-09"
});
console.writeline( "对象序列化后的字符串为:" );
console.writeline(jsonstr);
console.writeline( "\n\n字符串反序列化为对象后的值为:" );
var jsonobj = jsonconvert.deserializeobject<dynamic>(jsonstr);
console.writeline( "姓名:" + jsonobj.name);
console.writeline( "性别:" + jsonobj.sex);
console.writeline( "生日:" + jsonobj.birthday);
console.read();
}
}
}
|
执行结果
4.编写代码:数组的操作
csharp代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
using newtonsoft.json;
using system;
namespace jsontest
{
class program
{
static void main( string [] args)
{
string jsonstr = jsonconvert.serializeobject( new []{
new {
name = "张三" ,
sex = "男" ,
birthday = "2018-02-09"
},
new {
name = "李四" ,
sex = "男" ,
birthday = "2018-02-09"
}
});
console.writeline( "对象序列化后的字符串为:" );
console.writeline(jsonstr);
console.writeline( "\n\n字符串反序列化为对象后的值为:" );
var jsonarr = jsonconvert.deserializeobject<dynamic[]>(jsonstr);
foreach (var jsonobj in jsonarr)
{
console.writeline( "姓名:" + jsonobj.name);
console.writeline( "性别:" + jsonobj.sex);
console.writeline( "生日:" + jsonobj.birthday);
console.writeline( "---------------" );
}
console.read();
}
}
}
|
执行结果
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对服务器之家的支持。
原文链接:https://www.jianshu.com/p/c4c7c631a7a9