本帖最后由 杜加璇 于 2013-4-3 11:51 编辑
public class What {
public static void main(String[] args) throws IOException {
FileReader fr = new FileReader("text.txt");
int x;
while ((x = fr.read()) != -1) //
System.out.print((char) x);
}
while ((x = fr.read()) != -1) 这里为什么要返回一个int型的呢 ,输出时还得转成char行为什么不可以直接返回char型呢 |