さて、ここで私の問題を非常に具体的にしようと思います。いくつかの調査の後、最終的にコードが機能するようになりました(目的の結果が返されないためです)。私は現在 JSON.net を使用しており、Twitter API の応答である次の Json 文字列を逆シリアル化しようとしています。
[{"created_at":"2012-09-03T18:22:54Z","locations":[{"name":"Globales","woeid":1}],"trends":[{"query":"%2327CosasSobreMi","name":"#27CosasSobreMi","promoted_content":null,"url":"http:\/\/twitter.com\/search\/?q=%2327CosasSobreMi","events":null},{"query":"%23AskTravis","name":"#AskTravis","promoted_content":null,"url":"http:\/\/twitter.com\/search\/?q=%23AskTravis","events":null},{"query":"%23WhyDoPeopleThinkItsOkayTo","name":"#WhyDoPeopleThinkItsOkayTo","promoted_content":null,"url":"http:\/\/twitter.com\/search\/?q=%23WhyDoPeopleThinkItsOkayTo","events":null},{"query":"%22We%20%3C3%20Justin%22","name":"We \u003C3 Justin","promoted_content":null,"url":"http:\/\/twitter.com\/search\/?q=%22We%20%3C3%20Justin%22","events":null},{"query":"%22We%20Adore%20One%20Direction%22","name":"We Adore One Direction","promoted_content":null,"url":"http:\/\/twitter.com\/search\/?q=%22We%20Adore%20One%20Direction%22","events":null},{"query":"%22Stefan%20Is%20Elena's%20Humanity%22","name":"Stefan Is Elena's Humanity","promoted_content":null,"url":"http:\/\/twitter.com\/search\/?q=%22Stefan%20Is%20Elena's%20Humanity%22","events":null},{"query":"%22Eric%20Saade%20Come%20Back%20To%20Poland%22","name":"Eric Saade Come Back To Poland","promoted_content":null,"url":"http:\/\/twitter.com\/search\/?q=%22Eric%20Saade%20Come%20Back%20To%20Poland%22","events":null},{"query":"Hlavackova","name":"Hlavackova","promoted_content":null,"url":"http:\/\/twitter.com\/search\/?q=Hlavackova","events":null},{"query":"%22Serena%20Williams%22","name":"Serena Williams","promoted_content":null,"url":"http:\/\/twitter.com\/search\/?q=%22Serena%20Williams%22","events":null},{"query":"%22Kire%C3%A7burnu%20%C3%87akallar%C4%B1%22","name":"Kire\u00e7burnu \u00c7akallar\u0131","promoted_content":null,"url":"http:\/\/twitter.com\/search\/?q=%22Kire%C3%A7burnu%20%C3%87akallar%C4%B1%22","events":null}],"as_of":"2012-09-03T18:25:18Z"}]
オブジェクトなどを含む通常のJson文字列...最初と最後にある最初の「[、]」が何であるかわからないことを除いて、友人はそれを指摘しました。今、私はその Json 文字列のいくつかのクラスを作成しました:
public class Location
{
private string _name;
private int _woeid;
public string name { get { return _name; } set { value = _name; } }
public int woeid { get { return _woeid; } set { value = _woeid; } }
}
public class Trend
{
private string _query, _name, _url;
private object _promoted_content, _events;
public string query { get { return _query; } set { value = _query; } }
public string name { get { return _name; } set { value = _name; } }
public object promoted_content { get { return _promoted_content; } set { value = _promoted_content; } }
public string url { get { return _url; } set { value = _url; } }
public object events { get { return _events; } set { value = _events; } }
}
public class RootObject
{
private List<Location> _locations;
private List<Trend> _trends;
private string created_at_, _as_of;
public List<Trend> trends { get { return _trends; } set { value = _trends; } }
public string created_at { get { return created_at_;} set { value = created_at_; } }
public string as_of { get { return _as_of ;} set { value = _as_of; } }
public List<Location> locations { get { return _locations; } set { value = _locations; }}
}
そして、それを逆シリアル化するために使用している方法は次のとおりです。
WebClient client = new WebClient();
Stream stream = client.OpenRead(@"https://api.twitter.com/1/trends/1.json");
StreamReader reader = new StreamReader(stream);
string nvm = reader.ReadToEnd();
try
{
List<RootObject> content = JsonConvert.DeserializeObject<List<RootObject>>(JsonString);
}
catch (System.Exception message)
{
throw;
}
変数の内容が常に Null であり、Visual Studio 2005 を使用して抽象定義を im として変更できないため、クラスが間違っているかどうかわかりません。クラス内のリストを変更しようとしましたが、機能しません。
ここの StackOverflow でさまざまな応答を使用してさまざまな方法を試しましたが、それらはすべて、使用できない方法を使用しているか、通常の逆シリアル化が機能しているようです。