web-dev-qa-db-fra.com

Désérialiser un tableau JSON en C #

Je suis coincé avec un problème épineux.

J'ai une chaîne JSON de ce format:

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

Les champs dans "enregistrement" peuvent augmenter ou diminuer.

Donc, j'ai fait des cours comme celui-ci:

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

public class PersonList
{
    public Person record;
}

Et en essayant de désérialiser comme ceci:

JavaScriptSerializer ser = new JavaScriptSerializer();

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

Je fais quelque chose de mal. Mais incapable de trouver. Peux-tu aider s'il te plait.

Merci d'avance.

Mettre à jour:

En fait, le message d'erreur "Primitive JSON non valide:." à cause de la chaîne en train de lire un fichier avec ce code:

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;
}

Maintenant, je lis le fichier avec ceci:

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

Ça fonctionne bien.

14
Arnab Das

Cela devrait marcher ...

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;
}
24
I4V

Ce code fonctionne bien pour moi,

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; }

et supprimer un "{" ..,

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

DeserializeObject ..,

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