私はトリッキーな問題で立ち往生しています。
この形式の 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);
}
それはうまくいっています。