web-dev-qa-db-ja.com

C#でJSON配列を逆シリアル化する

私は厄介な問題に悩まされています。

私はこの形式のJSON文字列を持っています:

[{
  "record":
          {
             "Name": "Komal",
             "Age": 24,
             "Location": "Siliguri"
          }
 },
 {
  "record":
          {
             "Name": "Koena",
             "Age": 27,
             "Location": "Barasat"
          }
 },
 {
  "record":
          {
             "Name": "Kanan",
             "Age": 35,
             "Location": "Uttarpara"
          }
 }
... ...
]

「レコード」のフィールドは増減できます。

だから、私はこのようなクラスを作りました:

public class Person
{
    public string Name;
    public string Age;
}

public class PersonList
{
    public Person record;
}

そして、このようにデシリアライズしようとしています:

JavaScriptSerializer ser = new JavaScriptSerializer();

var r = ser.Deserialize<PersonList>(jsonData);

私は何か間違ったことをしています。しかし、見つけることができません。助けてください。

前もって感謝します。

更新:

実際、「Invalid JSON Primitive:」というエラーが表示されていました。このコードでファイルを読み取る文字列を取得していたため:

public static bool ReadFromFile(string path, string fileName, out string readContent)
{
   bool status = true;

   byte[] readBuffer = null;
   try
   {
      // Combine the new file name with the path
      string filePath = System.IO.Path.Combine(path, fileName);
      readBuffer = System.IO.File.ReadAllBytes(filePath);
   }
   catch (Exception ex)
   {
       status = false;
   }

   readContent = (null != readBuffer) ? Utilities.GetString(readBuffer) : string.Empty;

   return status;
}

今、私はこれでファイルを読んでいます:

using (StreamReader r = new StreamReader("E:\\Work\\Data.json"))
{
   string json = r.ReadToEnd();
   result = JsonConvert.DeserializeObject<List<PersonList>>(json);
}

それはうまく機能しています。

19
Arnab Das

これは動作するはずです...

JavaScriptSerializer ser = new JavaScriptSerializer();
var records = new ser.Deserialize<List<Record>>(jsonData);

public class Person
{
    public string Name;
    public int Age;
    public string Location;
}
public class Record
{
    public Person record;
}
28
I4V

このコードは私のためにうまく機能しています、

var a = serializer.Deserialize<List<Entity>>(json);
10
Hitesh
[JsonProperty("name")]
public string name { get; set; }
[JsonProperty("Age")]
public int required { get; set; }
[JsonProperty("Location")]
public string type { get; set; }

「{」を削除します..、

strFieldString = strFieldString.Remove(0, strFieldString.IndexOf('{'));

DeserializeObject ..、

   optionsItem objActualField = JsonConvert.DeserializeObject<optionsItem(strFieldString);
1
RandyMohan