-2

いくつかのアイテムを含むクラスがあります。DataContractJsonSerializerを使用して、このクラスのインスタンスをjsonにシリアル化したい:

[DataContract]
public class Policy
{
    private string expiration { get; set; }
    private List<List<string>> conditions { get; set; }
    public Policy(){}
    public Policy(string expiration, List<List<string>> conditions){
        this.expiration = expiration;
        this.conditions = conditions;
    }
    [DataMember]
    public string DateExpiration
    {
        get{ return expiration;}
        set{expiration = value;}
    }
    [DataMember]
    public List<List<string>> Conditions
    {
        get{return conditions;}
        set{conditions = value;}
    }
}

jsonにシリアル化すると、次のようになります。

{
    "expiration": "2011-04-20T11:54:21.032Z",
    "conditions": [
    ["eq", "acl", "private"],
    ["eq", "bucket": "myas3bucket"],
    ["eq", "$key", "myfilename.jpg"],
    ["content-length-range", 0, 20971520],
    ["eq", "$redirect", "myredirecturl"],
  ]
}

私はこのように試しましたが、何もしませんでした:

        string expiration = "2012-12-01T12:00:00.000Z";            
        List<List<string>> conditions = new List<List<string>>()
        {
            new List<string>(){ "[ eq", "acl", "private ]" }, 
            new List<string>(){ "[ eq", "bucket", "myas3bucket]" },
            new List<string>(){ "[ eq", "$key", "myfilename.jpg ]" },
            new List<string>(){ "[ content-length-range", "0", "20971520]" },
            new List<string>(){ "[ eq", "$redirect", "myredirecturl]" }
        };

        Policy myPolicy = new Policy(expiration,conditions);
        string policy = JSONHelper.Serialize<Policy>(myPolicy);

ありがとう

4

1 に答える 1

0

まず最初に...あなたのクラスは少し助けが必要です:

[DataContract] 
public class Policy 
{ 
    public Policy(){} 
    public Policy(string expiration, List<List<string>> conditions){ 
        this.DateExpiration = expiration; 
        this.Conditions = conditions; 
    } 
    [DataMember] 
    public string DateExpiration { get; set; } 

    [DataMember] 
    public List<List<string>> Conditions { get; set; }

}

リスト内の角かっこを削除してみてください。

    string expiration = "2012-12-01T12:00:00.000Z";             
    List<List<string>> conditions = new List<List<string>>() 
    { 
        new List<string>(){ "eq", "acl", "private" },  
        new List<string>(){ "eq", "bucket", "myas3bucket" }, 
        new List<string>(){ "eq", "$key", "myfilename.jpg" }, 
        new List<string>(){ "content-length-range", "0", "20971520" }, 
        new List<string>(){ "eq", "$redirect", "myredirecturl" } 
    }; 

    Policy myPolicy = new Policy(expiration,conditions); 
    string policy = JSONHelper.Serialize<Policy>(myPolicy);
于 2012-07-08T19:02:05.233 に答える