[Solved] Complex JSON to Java class


Use a JSON beautifier (like http://jsonformatter.curiousconcept.com/) so you can see better what’s in there. Then, create classes, like this:

class article {
    String publish_date;
    String title;
    ...

0

solved Complex JSON to Java class