Tagged Questions

39
votes
5answers
23k views

Java: How do I get a platform independent new line character?

How do I get a platform independent newline in java? I can't use "\n" everywhere.
5
votes
5answers
11k views

Carriage Return\Line feed in Java

i have created text file in unix enviroment using java code. For writing the text file i am using java.io.FileWriter and BufferedWriter. and for newline after each row i am using bw.newLine() method. ...
2
votes
10answers
5k views

Java source upgrade from 1.4.2 to 1.6.0_10 recommended ? (skipping 1.5)

Our desktop-only product at work has been using JDK 1.4.2 until now (also 1.4.2 JRE shipped with product). I am trying to convince the management to let us upgrade to a newer version in order to get ...
0
votes
3answers
66 views

Line endings confusion

I made a simple parser with java that reads a file one character at a time and constructs words. I tried to run it under Linux and I noticed that looking for '\n' doesn't work. Although if I compare ...
0
votes
3answers
59 views

why the snippet is unable to detect the end of line

FileReader reader = new FileReader("d:\\UnderTest\\AVS\\tester.txt"); char ch; int x; while( ( x = reader.read() ) != -1 ) { // I use the following statement to ...