I have 200mb of JSON data and I want to parse that JSON data into JAVA(MAP, JSONObject, not any POJO). I had used GSON and Jackson both library but both are giving me an error.
Asked
Active
Viewed 93 times
3
-
Can you share your errors with me, please? – Jaydeep Dhameliya Dec 28 '19 at 11:31
-
1200 MB is not a huge data file. Take a look at: [How to deserialise big JSON file (~300Mb)](https://stackoverflow.com/questions/58726892/how-to-deserialise-big-json-file-300mb), [Convert all the mysql table data into JSON in spring boot](https://stackoverflow.com/questions/58772409/convert-all-the-mysql-table-data-into-json-in-spring-boot), [how to parse a huge JSON file without loading it in memory](https://stackoverflow.com/questions/54817985/how-to-parse-a-huge-json-file-without-loading-it-in-memory) – Michał Ziober Dec 28 '19 at 15:24
-
Thanks @MichałZiober The solutions seem good. [How to deserialise big JSON file (~300Mb)](https://stackoverflow.com/questions/58726892/how-to-deserialise-big-json-file-300mb) is may help me a lot. – Meet Prajapati Dec 30 '19 at 05:30
-
Have you solved this problem? Did linked questions were helpful? – Michał Ziober Jan 02 '20 at 13:24
-
@MichałZiober Yes, I resolved the problem with that solutions – Meet Prajapati Jan 05 '20 at 03:16
-
Does this answer your question? [How to deserialise big JSON file (~300Mb)](https://stackoverflow.com/questions/58726892/how-to-deserialise-big-json-file-300mb). I marked your question as duplicate. You can upvote related answers which helped you. – Michał Ziober Jan 05 '20 at 11:33