我正在尝试估算以下字符串:
{"image":"c:testimagetest.jpg","predictions":[[0.0000103891,0.0128408,0.914102,0.0000968333,0.0729495]]}
我在这里测试了此字符串,它的解码是我想要的。但是,C#功能无法正常工作。
public class ServerResponse
{
[DataMember]
public string PredictImage { get; set; }
[DataMember]
public string[] JSONresult { get; set; }
}
private void button9_Click(object sender, EventArgs e)
{
string strResponse = txtJSONstring.Text;
ServerResponse jsonResult = new ServerResponse();
jsonResult = JsonConvert.DeserializeObject<ServerResponse>(strResponse);
txtJSONresult.AppendText(jsonResult.PredictImage);
// txtJSONresult.AppendText(jsonResult.JSONresult);
}
" jsonresult"结果始终为null。
有帮助吗?
您将想要以这种格式的东西。您的名字不在,并且拥有[[]]的预测是列表的列表。
public class ServerResponse
{
public string image { get; set; }
public List<List<double>> predictions { get; set; }
}