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
}
}
Josh Lee
179k39 gold badges279 silver badges282 bronze badges
-
3Search on the forum before asking. Exact duplicate?stackoverflow.com/questions/338586/a-better-java-json-library/…Petar Minchev– Petar Minchev2010年04月14日 08:46:45 +00:00Commented Apr 14, 2010 at 8:46
-
The first step would be searching StackOverflow, or simply clicking one of the many related question listed while posting the question. Then, if that does not help, post your question with a lot more detail or the problem you are trying to solve. "How to parse JSON" is quite vague! You will need to tell os what you want it parsed into.Jørn Schou-Rode– Jørn Schou-Rode2010年04月14日 08:53:18 +00:00Commented Apr 14, 2010 at 8:53
2 Answers 2
answered Apr 14, 2010 at 8:46
stacker
69.1k29 gold badges144 silver badges214 bronze badges
Sign up to request clarification or add additional context in comments.
Comments
I have had good results with the StringTree JSON library.
answered Jun 1, 2010 at 15:02
pkaeding
38k31 gold badges107 silver badges143 bronze badges
Comments
lang-java