我正在尝试使用 C# 和 Json.Net 为 Windows Phone 7 创建一个 reddit 应用程序(仅供练习)。我正在尝试将 json 转换为 c# 可以使用的东西,以及其他一些东西。我可以提取我想要的数据,但不知道我是否使用了正确的方法。然后,一旦我有了 json 数据,我就无法将其转换为自定义对象。无论如何,我确信这段代码中有很多错误,所以任何有助于理顺我的标题的帮助将不胜感激。
这是代码:
public partial class MainPage : PhoneApplicationPage
{
string json = "";
RootObject topic = new RootObject();
public MainPage()
{
InitializeComponent();
}
private void Button_Click(object sender, RoutedEventArgs e)
{
textBlock1.Text = "Retrieving...";
string url = @"http://www.reddit.com/r/all.json";
HttpWebRequest hWebRequest = (HttpWebRequest)HttpWebRequest.Create(url);
hWebRequest.Method = "GET";
hWebRequest.BeginGetResponse(Response_Completed, hWebRequest);
}
public void Response_Completed(IAsyncResult result)
{
HttpWebRequest request = (HttpWebRequest)result.AsyncState;
HttpWebResponse response = (HttpWebResponse)request.EndGetResponse(result);
using (StreamReader streamReader = new StreamReader(response.GetResponseStream()))
{
json = streamReader.ReadToEnd();
topic = JsonConvert.DeserializeObject<RootObject>(json);
}
Deployment.Current.Dispatcher.BeginInvoke(() =>
{
//textBlock2.Text = topic.data2.title;
textBlock1.Text = "Done.";
});
这一行告诉我需要一个“新”调用。
textBlock2.Text = topic.data2.title;
现在这部分给我带来了麻烦。如何正确实例化 data、data2 和 child?
public class MediaEmbed
{
}
public class Data2
{
public string domain { get; set; }
public MediaEmbed media_embed { get; set; }
public object levenshtein { get; set; }
public string subreddit { get; set; }
public string selftext_html { get; set; }
public string selftext { get; set; }
public object likes { get; set; }
public bool saved { get; set; }
public string id { get; set; }
public bool clicked { get; set; }
public string title { get; set; }
public object media { get; set; }
public int score { get; set; }
public bool over_18 { get; set; }
public bool hidden { get; set; }
public string thumbnail { get; set; }
public string subreddit_id { get; set; }
public string author_flair_css_class { get; set; }
public int downs { get; set; }
public bool is_self { get; set; }
public string permalink { get; set; }
public string name { get; set; }
public double created { get; set; }
public string url { get; set; }
public string author_flair_text { get; set; }
public string author { get; set; }
public double created_utc { get; set; }
public int num_comments { get; set; }
public int ups { get; set; }
//public override string ToString()
//{
// return title;
//}
}
public class Child
{
public string kind { get; set; }
public Data2 data { get; set; }
}
public class Data
{
public string modhash { get; set; }
public Child[] children { get; set; }
public string after { get; set; }
public object before { get; set; }
}
public class RootObject
{
public RootObject()
{
}
public string kind { get; set; }
public Data data = new Data();
public Data2 data2 = new Data2();
public Child child = new Child();
}
}