Click here to Skip to main content
15,912,837 members
Home / Discussions / Java
   

Java

 
AnswerRe: voip project Pin
Richard MacCutchan28-Apr-10 22:31
mveRichard MacCutchan28-Apr-10 22:31 
Questionconverting file data to string Pin
002comp27-Apr-10 23:54
002comp27-Apr-10 23:54 
AnswerRe: converting file data to string Pin
002comp28-Apr-10 1:54
002comp28-Apr-10 1:54 
GeneralRe: converting file data to string Pin
jwhite928-Apr-10 2:44
jwhite928-Apr-10 2:44 
GeneralRe: converting file data to string Pin
002comp28-Apr-10 18:07
002comp28-Apr-10 18:07 
GeneralRe: converting file data to string Pin
David Skelly28-Apr-10 22:27
David Skelly28-Apr-10 22:27 
GeneralRe: converting file data to string(Solved) Pin
002comp28-Apr-10 23:24
002comp28-Apr-10 23:24 
QuestionJson -> java object Pin
Evgeni5723-Apr-10 9:37
Evgeni5723-Apr-10 9:37 
Hi
There is no problem to convert JSON which looks like this:
"{\"response\": {\"Code\":200, \"Text\":\"Ok\", \"Id\":\"123\"}}
to the following object:
public class JsonCL
{
    private int Code;
    private String Text;
    private int Id;
    
    setters;
    getters;
}


But what about the JSON, which contains arrays of data, and nested arrays?
For example:
{\"response\": {\"Code\":200, \"Text\":\"Ok\", \"Id\":\"123\", \"data\":{\"groups\": [{\"key1\":\"value1\", \"nestedData\":[{\"key1\":\"value1\", \"key2\":\"value2\", \"key3\":\"value3\"},{\"key1\":\"value4\", \"key2\":\"value5\", \"key3\":\"value6\"}]},{\"key1\":\"value2\", \"nestedData\": [{\"key1\":\"value7\", \"key2\":\"value8\", \"key3\":\"value9\"},{\"key1\":\"value10\", \"key2\":\"value11\", \"key3\":\"value12\"}]}]}}}

How can I convert such JSON into java object?

Thanks!
AnswerRe: Json -> java object Pin
TorstenH.6-May-10 0:56
TorstenH.6-May-10 0:56 
QuestionVPN project tips?? Pin
Strategic_Thinker20-Apr-10 6:41
Strategic_Thinker20-Apr-10 6:41 
AnswerRe: VPN project tips?? Pin
Richard MacCutchan20-Apr-10 11:06
mveRichard MacCutchan20-Apr-10 11:06 
GeneralRe: VPN project tips?? Pin
Strategic_Thinker22-Apr-10 4:12
Strategic_Thinker22-Apr-10 4:12 
GeneralRe: VPN project tips?? Pin
Richard MacCutchan22-Apr-10 5:51
mveRichard MacCutchan22-Apr-10 5:51 
GeneralRe: VPN project tips?? Pin
Paul Conrad22-Apr-10 6:21
professionalPaul Conrad22-Apr-10 6:21 
GeneralRe: VPN project tips?? Pin
Strategic_Thinker22-Apr-10 6:29
Strategic_Thinker22-Apr-10 6:29 
GeneralRe: VPN project tips?? Pin
Richard MacCutchan22-Apr-10 6:33
mveRichard MacCutchan22-Apr-10 6:33 
GeneralRe: VPN project tips?? Pin
Paul Conrad22-Apr-10 6:36
professionalPaul Conrad22-Apr-10 6:36 
GeneralRe: VPN project tips?? Pin
Strategic_Thinker22-Apr-10 6:44
Strategic_Thinker22-Apr-10 6:44 
GeneralRe: VPN project tips?? Pin
Paul Conrad22-Apr-10 7:01
professionalPaul Conrad22-Apr-10 7:01 
GeneralRe: VPN project tips?? Pin
Strategic_Thinker22-Apr-10 7:04
Strategic_Thinker22-Apr-10 7:04 
GeneralRe: VPN project tips?? Pin
Strategic_Thinker22-Apr-10 6:57
Strategic_Thinker22-Apr-10 6:57 
GeneralRe: VPN project tips?? Pin
Paul Conrad22-Apr-10 6:34
professionalPaul Conrad22-Apr-10 6:34 
GeneralRe: VPN project tips?? Pin
Strategic_Thinker22-Apr-10 6:35
Strategic_Thinker22-Apr-10 6:35 
GeneralRe: VPN project tips?? Pin
Paul Conrad22-Apr-10 6:43
professionalPaul Conrad22-Apr-10 6:43 
Questioninserting byte array into mysql DB Pin
Evgeni5720-Apr-10 0:06
Evgeni5720-Apr-10 0:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.