0

クラスにjsonのデータを入力しようとしています。しかし、今日のコードのリストと予測からの取得に問題がありますか?

string js = @"{"query":{"count":1,"created":"2013-04-28T11:10:11Z","lang":"en-US","results":{"channel":{"item":{"title":"Conditions for Kazan', RS at 3:01 pm MSK","lat":"55.78","long":"49.18","link":"http://us.rd.yahoo.com/dailynews/rss/weather/Kazan'__RS/*http://weather.yahoo.com/forecast/RSXX0043_f.html","pubDate":"Sun, 28 Apr 2013 3:01 pm MSK","condition":{"code":"30","date":"Sun, 28 Apr 2013 3:01 pm MSK","temp":"54","text":"Partly Cloudy"},"description":"\n<img src=\"http://l.yimg.com/a/i/us/we/52/30.gif\"/><br />\n<b>Current Conditions:</b><br />\nPartly Cloudy, 54 F<BR />\n<BR /><b>Forecast:</b><BR />\nSun - Light Rain Late. High: 57 Low: 44<br />\nMon - Rain. High: 59 Low: 36<br />\n<br />\n<a href=\"http://us.rd.yahoo.com/dailynews/rss/weather/Kazan'__RS/*http://weather.yahoo.com/forecast/RSXX0043_f.html\">Full Forecast at Yahoo! Weather</a><BR/><BR/>\n(provided by <a href=\"http://www.weather.com\" >The Weather Channel</a>)<br/>\n","forecast":[{"code":"11","date":"28 Apr 2013","day":"Sun","high":"57","low":"44","text":"Light Rain Late"},{"code":"12","date":"29 Apr 2013","day":"Mon","high":"59","low":"36","text":"Rain"}],"guid":{"isPermaLink":"false","content":"RSXX0043_2013_04_29_7_00_MSK"}}}}}}";
4

3 に答える 3

3

上記のコードの代わりにこれを使用してください

 public class Condition
{
    public string code { get; set; }
    public string date { get; set; }
    public string temp { get; set; }
    public string text { get; set; }
}

public class Forecast
{
    public string code { get; set; }
    public string date { get; set; }
    public string day { get; set; }
    public string high { get; set; }
    public string low { get; set; }
    public string text { get; set; }
}

public class Guid
{
    public string isPermaLink { get; set; }
    public string content { get; set; }
}

public class Item
{
    public string title { get; set; }
    public string lat { get; set; }
    public string @long { get; set; }
    public string link { get; set; }
    public string pubDate { get; set; }
    public Condition condition { get; set; }
    public string description { get; set; }
    public List<Forecast> forecast { get; set; }
    public Guid guid { get; set; }
}

public class Channel
{
  public Item item { get; set; }
}

public class Results
{
   public Channel channel { get; set; }
}

public class Query
{
  public int count { get; set; }
  public string created { get; set; }
  public string lang { get; set; }
  public Results results { get; set; }
}

public class RootObject
{
   public Query query { get; set; }
}

httpclient を使用してリクエストを送信します

var httpClient = new HttpClient();
var response = await httpClient.GetAsync(uri);


string content = await response.Content.ReadAsStringAsync();


RootObject obj =   Newtonsoft.Json.JsonConvert.DeserializeObject<RootObject>(content);
于 2013-04-28T12:21:32.097 に答える
2

解析メソッドは を期待JSONしています。代わりに URL を指定します...

URLのダウンロード内容

var json = (new WebClient()).DownloadString(url);

その後

JObject o = JObject.Parse(json);

UPD : 投稿後に質問を完全に変更することはお勧めできません。もともとあなたはURLas として解析しようとしましたがJSON、この回答はその方法を示しています

UPD2 :おそらく、あなたが投稿した JSON は有効ではありません。たとえば、JsonLint は言う

Parse error on line 9:
...           "title": "ConditionsforKazan'
-----------------------^
Expecting 'STRING', 'NUMBER', 'NULL', 'TRUE', 'FALSE', '{', '['

UPD3 OK、今は有効に見えます。

JSON.NET を使用したクエリに関するこれらのサンプルを確認してください

于 2013-04-28T12:22:58.217 に答える