I'm new to IT Industry and My lead gave a Task to convert JSON file which contains JSON arrays, objects and Nested with 4000 lines to convert into Excel sheet in locally by reading JSON file. Please help me fellow coders.
Asked
Active
Viewed 288 times
0
-
Maybe [this](https://stackoverflow.com/questions/7172158/converting-json-to-xls-csv-in-java) is could be helpful. Best Regards – Marius Biegger Nov 23 '21 at 14:53
-
Welcome to StackOverflow. please take a while and read [ask] with [mre]. Good luck – nima Nov 24 '21 at 18:28
1 Answers
2
There is a lot to unpack here.
You are asking for instructions to build a Java Application without providing much context regarding the entire use case. There are a lot of different ways to approach your problem.
If you are new to Spring-Boot, I'd suggest reading the documentation.
It hopefully will provide you with a basic understanding of the core concepts.
Now lets get to the JSON-to-XLS conversion. According to this question, it is recommended to convert your JSON-Data into the CSV format. CSV could be interpreted as an open alternative to xls for tabular data. As far as I'm aware, Excel can open CSV files.

Marius Biegger
- 23
- 1
- 3