Converting Nested Json files to CSV in java
问题 { "Employee": [ { "empMID": "mock:1", "comments": [], "col1": "something", "contact": [{"address":"2400 waterview", "freetext":true} ], "gender": "male" }, { "empMID": "mock:2", "comments": [], "col1": "something", "contact": [{"address":"2200 waterview", "freetext":true} ], "gender": "female" } ], "cola": false, "colb": false } This is how my Json file looks .I m required to convert this json to a csv .(I m trying to convert a multi-dimesional data to 2d).I m using gson for my purpose.I