char(cn) 是什么意思?
我只见过这种代码,你那个我实在看不通。
import java.io.*;
public class Demo1 {
public static void main(String[] args) throws IOExcption{
FileReader fu =new FileReader("123.txt");
char[] c =new char[1024];
int cn =0;
while ((cn=fu.read(c))!=-1){
System.out.println(c);
}
fu.close();
}
} |