8

在我的C# + WPF + .NET 4.5代码中,假设我Player以以下方式定义了一个类:

public class Player {
  public string FirstName;
  public string LastName;
  public List<int> Cells;
  public string Level;
}

我有一个myobjects.json文件,我设法在其中编写(使用JSON.NET)这些对象的序列化集合(前两个如下所示):

{
  "FirstName": "Foo",
  "LastName": "Fighter",
  "Cells": [
    1,
    2,
    3
  ],
  "Level": "46"
}{
  "FirstName": "Bar",
  "LastName": "Baz",
  "Cells": [
    104,
    127,
  ],
  "Level": "D2"
}

我想做的是读取文件,并反序列化这些对象并填充 a Listof Players:

using (Stream fs = openDialog.OpenFile())
using (StreamReader sr = new StreamReader(fs))
using (JsonTextReader jr = new JsonTextReader(sr)) {
  while (jr.Read()) {
    /* Find player in file */
    Player p = /* Deserialize */
    PlayerList.Add(p);
  }
}
4

2 回答 2

32

无需逐项阅读。

string json = File.ReadAllText("myobjects.json");
var playerList = JsonConvert.DeserializeObject<List<Player>>(json);

您可以使用此代码将您的播放器列表写入文件

File.WriteAllText("myobjects.json", JsonConvert.SerializeObject(playerList));
于 2013-05-07T10:14:16.357 回答
2

在 C# .Net 核心控制台应用程序中:首先,通过以下命令从 NuGet 安装 Newtonsoft。

PM> 安装包 Newtonsoft.Json -Version 12.0.2

    string filePath = Path.GetFullPath(Path.Combine(Environment.CurrentDirectory, @"..\..\..\")) + @"Data\Country.json";
    string _countryJson = File.ReadAllText(filePath);
    var _country = JsonConvert.DeserializeObject<List<Country>>(_countryJson);
于 2019-10-24T19:48:53.227 回答