0
我想解析谷歌的API響應json格式化字符串到數據表。如何將json字符串轉換爲數據表?
我嘗試使用using Newtonsoft.Json;
,做這樣的:
var json = new WebClient().DownloadString(textBox1.Text);
DataTable tester = (DataTable)JsonConvert.DeserializeObject(json.ToString(), (typeof(DataTable)));
我收到此錯誤:Additional text found in JSON string after finishing deserializing object.
當我運行串throught JSONLint,跟它的字符串是有效的。
here is json:
http://jsfiddle.net/q4XqQ/
這將意味着你的JSON無效。 – SLaks
你能發佈json字符串嗎? –
通過http://jsonlint.com/運行你的json字符串並驗證它 – mckeejm