This is a continue question by here.
Now the problem is, there is no line break in each line. All data stick together, how can I do that?
Like this:
{"bla":"bla"}{"bla":"bla"}{"bla":"bla"}{"bla":"bla"}{"bla":"bla"}{"bla":"bla"}.....
Thanks!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Read in the JSON file as a single String and replace “}{” with “}\n{“. Pass the resulting String into a StringReader and you can read it line by line.