Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

My Json response is something as below and confused how to parse it using GSON. Please have look on the following and guide me how i can parse it using GSON.

{
  "GetMICSDataResult": {
    "CONVERTIONFACT": [
{
        "CONVERSIONFACT": "1",
        "ITEMNO": "S1300W",
        "UOM": "Ea."
      },
      {
        "CONVERSIONFACT": "1",
        "ITEMNO": "S1300Y",
        "UOM": "Ea."
      }
    ],
ITEMDETAILS": [
      {
        "ITEMDESC": "FluorescentDeskLamp",
        "ITEMNO": "A11030",
        "LOCATION": "1",
        "PRICELIST": "WHS",
        "QTYONHAND": 164,
        "UNITPRICE": 38.3,
        "UOM": "Ea."
      },
      {
        "ITEMDESC": "FluorescentDeskLamp",
        "ITEMNO": "A11030",
        "LOCATION": "2",
        "PRICELIST": "WHS",
        "QTYONHAND": 247,
        "UNITPRICE": 38.3,
        "UOM": "Ea."
      }
]

} }

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.0k views
Welcome To Ask or Share your Answers For Others

1 Answer

Gson gson = new Gson();
YourClass class = gson.fromJson(jsonInString, YourClass.class);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...