0

これは、「アプリケーション」の複数のオブジェクトを含む私の JSON ファイルです。

{"Application":[{"appid":"0","appname":"application0"},
                {"appid":"1","appname":"application1"},
                ....
               ]} 

Android コードから WCF REST サービス メソッドに受け取っています。

[WebInvoke(Method = "POST", UriTemplate = "/AcceptApp", RequestFormat = WebMessageFormat.Json,  
    ResponseFormat = WebMessageFormat.Xml, BodyStyle = WebMessageBodyStyle.WrappedRequest)]
[OperationContract]
string AcceptApplication(Stream jsonstring);

メソッド定義は次のとおりです。

public string AcceptApplication(Stream inputStream)
{
    StreamReader r = new StreamReader(inputStream);
    string jsonstring = r.ReadToEnd();
    try
    {
       List<ApplicationEntity> list = JsonConvert.DeserializeObject<List<ApplicationEntity>>(jsonstring);
       for (int i = 0; i < list.Count; i++)
       {
         // using data
       }
    }
    catch (Exception E)
    {
        Logger.Error(E.Message);
    }

私のアプリケーションエンティティ:

public class ApplicationEntity
{
    public string appid { get; set; }
    public string appname { get; set; }
} 

jsonstring を取得していますが、エラーが発生しています:

Newtonsoft.Json.JsonSerializationException: Cannot deserialize the current JSON object (e.g.    
{"name":"value"}) into type  
'System.Collections.Generic.List`1[ApplicationEntity]' because the  
type requires a JSON array (e.g. [1,2,3]) to deserialize correctly.
To fix this error either change the JSON to a JSON array (e.g. [1,2,3]) or change the deserialized type so
that it is a normal .NET type (e.g. not a primitive type like integer, not a collection type like an array 
or List<T>) that can be deserialized from a JSON object. JsonObjectAttribute can also be added to the type 
to force it to deserialize from a JSON object.
4

1 に答える 1

2

解析しようとしている JSON 文字列は、リストでも配列でもありません。"Application"配列と呼ばれるプロパティを持つオブジェクトです。これを試して:

public class ApplicationObject
{
    public List<ApplicationEntity> Application { get; set; }
}
...
var apps = JsonConvert.DeserializeObject<ApplicationObject>(jsonstring);

これで、 のリストにアクセスできますapps.Application

于 2012-07-13T03:10:29.263 に答える