Кто-нибудь может мне помочь, почему я не могу объединить FileReader и System.out.println в одну строку.
File cf = new File("D:\\jv\\test.txt");
FileReader cfr = new FileReader(cf);
char[] cc = new char[4096];
cfr.read(cc); // join line 1
System.out.println(cc); // join line 2
// Jointing line 1 and 2 gives the file lenth only, not the content.
// System.out.println(cfr.read(cc));*
Спасибо!