my file contains this string:
a b c now I want to read it and split it with empty line so I have this:
text.split("\n\n"); where text is output of file problem is that this doesnt work. When I convert new line to byte I see that "\n\n" is represented as 10 10 but new line in my file is represented by 10 13 10 13. So how I can split my file ?