web-dev-qa-db-ja.com

JSON文字列をC#ドットのオブジェクトリストにデシリアライズする方法

次のJSON文字列を使用しています

{
"transactions": 
[
   {
    "paymentcharge":"0.0",
    "amount":352,
    "id":13418,
    "shippingcharge":35,
    "shippingtype":2,
    "status":2,
    "paymenttype":1,
    "date":"2012-10-06 16:15:28.0"
   },   
   {
    "paymentcharge":"0.0",
    "amount":42455,
    "id":16305,
    "shippingcharge":0,
    "shippingtype":2,
    "status":2,
    "paymenttype":2,
    "date":"2012-11-30 09:29:29.0"
   },   
   {
    "paymentcharge":"1.0",
    "amount":42456,
    "id":16305,
    "shippingcharge":0,
    "shippingtype":2,
    "status":2,
    "paymenttype":2,
    "date":"2012-11-30 09:29:29.0"
   }
],
"count":3
}

私はjsonデータを解析して感じるために次のようなクラス構造を持っています

class clsSalesTran
{
    public double paymentcharge { get; set; }
    public double amount { get; set; }
    public long id { get; set; }
    public int shippingcharge { get; set; }
    public int shippingtype { get; set; }
    public int status { get; set; }
    public int paymenttype { get; set; }
    public DateTime date { get; set; }
}

上記のJSON文字列をリストに逆シリアル化するにはどうすればよいですか?

逆シリアル化にNewtonsoft.Jsonを使用しています。

13

最初に別のクラスを作成します。

public class SalesTransactions
{
     public List<clsSalesTran> transactions {get;set;}
     public int count{get;set;}
}

次に、

JsonConvert.DeserializeObject<SalesTransactions>(inputString)
20
Satpal

以下のようにクラスを作成します
「clsSalesTran」クラスのリストと「Count」の変数を作成する

注:JsonPropertyはJson文字列から必須です

public class SalesTransactions
{
     [JsonProperty("transactions")]
     public List<clsSalesTran> transactions {get;set;}
     public int count{get;set;}
}

次に、このクラスを以下のように使用して逆シリアル化できます

SalesTransactions st = JsonConvert.DeserializeObject<SalesTransactions>(inputString)

以下のようにDeserializedオブジェクトを使用します

double paymentcharge = st.transactions[0].paymentcharge;
8
Shibin Sundar

文字列をListタイプのオブジェクトのclsSalesTranに逆シリアル化するには:

var myList = JsonConvert.DeserializeObject<List<clsSalesTran>>(inputString);
2
Andrew
class WeapsCollection
{
    public Dictionary<string, WeaponDetails> Weapons { get; set; }

}

class WeaponList
{
    public WeaponDetails AEK { get; set; }
    public WeaponDetails XM8 { get; set; }
}

class WeaponDetails
{
    public string Name { get; set; }
    public int Kills { get; set; }
    public int Shots_Fired { get; set; }
    public int Shots_Hit { get; set; }
}

class Program  
{
    static void Main(string[] args)
    {
        string json = @"
        {
           'weapons':

                    {
                       'aek':
                            {
                               'name':'AEK-971 Vintovka',
                               'kills':47,
                               'shots_fired':5406,
                               'shots_hit':858
                            },
                       'xm8':
                            {
                               'name':'XM8 Prototype',
                               'kills':133,
                               'shots_fired':10170,
                               'shots_hit':1790
                            },
                    }

        }";

        WeapsCollection weps = JsonConvert.DeserializeObject<WeapsCollection>(json);
        Console.WriteLine(weps.Weapons.First().Value.Shots_Fired);            

        Console.ReadLine();

    }
}

問題が発生した場合は返信してください。

0
Vikram Bhosale