简体   繁体   中英

parsing JSON in java?

How to parsing JSON in java?

{
    "code": 100,
    "message": "SUCCESS",
    "result": {
        "list": [
            {
                "cardNumber": "ALUFZZ5SZ1Q5",
                "expireTime": 1270742400,
                "surplusThreshold": 4,
                "uid": 771292,
                "useTime": 1270214375,
                "wareId": 1145
            },
            {
                "cardNumber": "ALUFZZ5SZ1QD",
                "expireTime": 1270828800,
                "surplusThreshold": 7,
                "uid": 784289,
                "useTime": 1270302200,
                "wareId": 1145
            },
            {
                "cardNumber": "ALUFZZ5SZ1RC",
                "expireTime": 1270828800,
                "surplusThreshold": 10,
                "uid": 773664,
                "useTime": 1270300871,
                "wareId": 1145
            },
            {
                "cardNumber": "ALUFZZ5SZ1UM",
                "expireTime": 1270828800,
                "surplusThreshold": 10,
                "uid": 779560,
                "useTime": 1270282841,
                "wareId": 1145
            },
            {
                "cardNumber": "ALUFZZ5SZ1VT",
                "expireTime": 1270656000,
                "surplusThreshold": 2,
                "uid": 754099,
                "useTime": 1270106775,
                "wareId": 1145
            }
        ],
        "pageCount": 61,
        "pageIndex": 2,
        "pageSize": 5,
        "recordCount": 308
    }
}

Follow the examples in gson-user-guide

Download Site

More json libraries are listet at json.org

我在StringTree JSON库中取得了不错的结果。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM