I want to convert following json string to java arraylist so that i can get hold of id or name inside docs and make changes in java.
{
response{
docs[
{id:#
name:#
}
]
}
}
|
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
There are many HTTP client libraries, but given that you're pulling in JSON your best bet is to use the Jersey client library. You need to create a Java object which matches the JSON (in this case, a *Update Basic overview of the code. First, set up the Jersey client:
Then create your request:
At this stage, if you want to fetch your JSON back as a
But the real benefit of using Jersey over the other HTTP clients is that it will parse the JSON for you so that you don't need to think about it. If you create the following classes:
then you can change your Jersey client code to:
and you can now access the fields in response as per a normal Java object. |
|||||
|
|
|||||||||||
|
|
Actually you want to perform HTTP GET, so take a look on this discussion: How do I do a HTTP GET in Java? |
|||
|
|