c#使用Newtonsoft.Json獲取json的值
需下載Newtonsoft.Json.dll後,在項目中添加引用。
示例代碼如下:
using System;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
namespace ExampleHoverTree.HtExample
{
public partial class Json : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string jsonStr = "{'title':'何問起', 'domain':'hovertree.com', 'content':'詳細內容'}"; //Json字符串
JObject obj = (JObject)JsonConvert.DeserializeObject(jsonStr); //序列化(也可使用JToken代替JObject)
Response.Write(obj["title"].ToString()); //獲取指定屬性title的值
}
}
}