1

How can i convert a json objet to java bean(MainBean) of following type

class MainBean{
private int id;
private SubBean sBean;
}  
class SubBean{
private String name;
private List<DBean> dBean;
}

1 Answer 1

4

There are alot of libraries that can do it.
For exanple, you can do it using Google-Gson

MainBean bean = new Gson().fromJson(yourJsonAsString, MainBean.class); 

JSON like this will be converted well

{"id" : 1, "sBean" : {"name" : "beanname", "dBean" : []}}
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.