さて、txt ファイルを読み取り、すべての行を文字列に変換する Java プログラムを作成しようとしています。たとえば、txt ファイルは次のようになります。
This should be a string
This should be another string
And another string
現在、私のコードでは、txt ファイルを 1 つの文字列に変換することしかできません。
String Content = new Scanner(new File ("CONTENTS.txt")).useDelimeter(",").next();
System.out.println(Content);