Deserializacja tablicy JSON w C #
Utknąłem z trudnym problemem.
Mam ciąg JSON tego formatu:
[{
"record":
{
"Name": "Komal",
"Age": 24,
"Location": "Siliguri"
}
},
{
"record":
{
"Name": "Koena",
"Age": 27,
"Location": "Barasat"
}
},
{
"record":
{
"Name": "Kanan",
"Age": 35,
"Location": "Uttarpara"
}
}
... ...
]
Pola w „rekordzie” mogą się zwiększać lub zmniejszać.
Zrobiłem takie klasy:
public class Person
{
public string Name;
public string Age;
}
public class PersonList
{
public Person record;
}
I próbując w ten sposób deserializować:
JavaScriptSerializer ser = new JavaScriptSerializer();
var r = ser.Deserialize<PersonList>(jsonData);
Robię coś źle. Ale nie mogę znaleźć. Czy możesz mi pomóc?
Z góry dziękuję.
Aktualizacja:
Właściwie otrzymałem błąd „Nieprawidłowy prymitywny JSON:.” ze względu na to, że otrzymywałem ciąg odczytujący plik z tym kodem:
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;
}
Teraz czytam ten plik:
using (StreamReader r = new StreamReader("E:\\Work\\Data.json"))
{
string json = r.ReadToEnd();
result = JsonConvert.DeserializeObject<List<PersonList>>(json);
}
Działa dobrze.