以下のコードの何が問題なのかわかりません。何もない場合はnullを出力しています。
出力:null This is one. This is two. This is three. This is four five six. seven? null
ファイルの内容:
This is one.
This is two.
This is three.
This is four
five
six.
seven?
これに関する助けがあれば大歓迎です!
try (BufferedReader br = new BufferedReader(new FileReader(filename))) {
String cLine="";
while ((cLine = br.readLine()) != null) {
content+= cLine;
}
} catch (IOException e) {
e.printStackTrace();
}
System.out.println(content);