I need some help to read in Java a large text file that contains 25000 JSON objects that are delimited by newline. Example:
{"productName":"Latitude E2000","Make":"Dell"}
{"productName":"Latitude E2500","Make":"Dell"}
{"productName":"Vaio2000","Make":"Sony"}
{"productName":"Vaio2500","Make":"Sony"}
{"productName":"A2000","Make":"Asus"}
{"productName":"A3000","Make":"Asus"}
If the file contains only one JSON object then it's pretty straightforward as there's many examples out there. But I haven't been able to find an example that reads a file with multiple JSON objects separated by newline.
Thanks!