Home > Software engineering >  Vb how to filter out some json code displayed and arranged?
Vb how to filter out some json code displayed and arranged?

Time:09-17

I use VB to the server POST information, return is the result of the JSON format in the text box 1
Here is an example of
The POST HTTP/1.1
http://XXXXXXXXX/get.htmThe Content - Length: 66
The content-type: application/x - WWW - form - urlencoded
Host: 60.10.25.153:10060
Connection: Keep Alive -
The user-agent: android - async HTTP/1.4.3 (http://loopj.com/android-async-http)
The Accept - Encoding: gzip
City=XXXX& The receive=2 & amp; Page=1 & amp; No=& amp; ShardingId=41


How to make the json code in vb to read the text box, make it shows some of the projects listed come
Returns ten arrays, for example, only show each of the array with fixed cust and proce numerical downwards, other json numerical block
Please expert help,


{
"Result" : {
"Code" : 1,
"Desc" : "the call is successful!"
},
"Data" : [
{
"Type" : 1,
"Cust" : "11766938",
"Time" : "the 2018-12-11 18:00:00,"
"Flag" : 0,
"OperId" : "11724512",
"Proce" : 5283,
},
{
"Type" : 1,
"Cust" : "81206117",
"Time" : "the 2018-12-11 18:00:00,"
"Flag" : 0,
"OperId" : "11724512",
"Proce" : 4802,
}
]
}
  • Related