0

次の文字列をデシリアライズしたい:

YAHOO.Finance.SymbolSuggest.ssCallback({"ResultSet":{"Query":"google","Result":[{"symbol":"GOOG","name": "Google Inc.","exch": "NMS","type": "S","exchDisp":"NASDAQ","typeDisp":"Equity"},{"symbol":"GGQ1.DE","name": "GOOGLE-A","exch": "GER","type": "S","exchDisp":"XETRA","typeDisp":"Equity"}]}})

私は WebClient でダウンロードします。しかし、逆シリアル化する前に、末尾の "YAHOO.Finance.SymbolSuggest.ssCallback(" と ")" を削除する必要があります。

// get response
WebResponse response = request.EndGetResponse(result);
Stream stream = response.GetResponseStream();

// convert to string
StreamReader reader = new StreamReader(stream);
string output = reader.ReadToEnd();
// cut string
output = output.Substring(39, output.Length - 40);
// convert back to stream
MemoryStream ms = new MemoryStream(Encoding.UTF8.GetBytes(output));

だから、私が得る応答はストリームです。そのストリームを文字列に変換し、文字列を変更してから、文字列をストリームに変換します。次に、逆シリアル化を試みます。

// parse json
System.Runtime.Serialization.Json.DataContractJsonSerializer rootSer = new System.Runtime.Serialization.Json.DataContractJsonSerializer(typeof(RootObject));

// get root object
RootObject root = (RootObject)rootSer.ReadObject(ms);

// add to listbox
foreach (Result res in root.ResultSet.Result)
{
    Dispatcher.BeginInvoke(() => ResultList.Add(res));
}

問題は、foreach で nullpointexeption を取得することです... 私のクラスは次のようになります。

public class Result
{
    public string symbol { get; set; }
    public string name { get; set; }
    public string exch { get; set; }
    public string type { get; set; }
    public string exchDisp { get; set; }
    public string typeDisp { get; set; }
}

public class ResultSet
{
    public string Query { get; set; }
    public List<Result> Result { get; set; }
}

public class RootObject
{
    public ResultSet ResultSet { get; set; }
}
4

1 に答える 1