我正在尝试使用VS项目中的.json文件中的数据实例化poco对象。当我使用这段代码时,它只返回一个空对象。
类别:
public class Person
{
public int id { get; set; }
public string name { get; set; }
}
Json文件在文件中:
{
"person":
{
"id": 1,
"name": "joe"
}
}
Program.cs中的代码:
static void Main(string[] args)
{
string jspath = Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), @"Json\json1.json");
//person object results in 0 for id and null for name (empty)
Person person = new JavaScriptSerializer().Deserialize<Person>(File.ReadAllText(jspath ));
}
我做错了什么?
答案 0 :(得分:2)
您的JSON文件不正确。
应该是:
{ "id": 1, "name": "joe" }
证明:
Person p = new Person
{
id = 1,
name = "joe"
};
var sb = new StringBuilder();
new JavaScriptSerializer().Serialize(p, sb);
Console.WriteLine(sb.ToString()); // Outputs: { "id": 1, "name": "joe" }