黑马程序员技术交流社区
标题:
关于IO问题
[打印本页]
作者:
郑强强
时间:
2012-4-10 15:18
标题:
关于IO问题
import java.io.*;
public class tReader
{
public static void main(String args[])
{
int x= 0;
FileReader fr = null;
try
{
fr = new FileReader("E:/Java Demo/testReader.java");
while((x = fr.read()) != -1)
{
System.out.print((char)fr.read());//*+_我的问题在这!!
}
fr.close();
}catch(FileNotFoundException ex)
{
System.out.println("文件没有找到。");
System.exit(-1);
}
catch(IOException ioe)
{
System.out.println("文件读写错误");
System.exit(-1);
}
}
}
这样写“System.out.print((char) i );”可以全部打印出来,
System.out.print((char)fr.read());,如果这样写的话,这个文件打印不全
why??
作者:
贠(yun)靖
时间:
2012-4-10 15:35
while((x = fr.read()) != -1) 你这read已经读了一个字符了 而不打印
{
System.out.print((char)fr.read());} 这又读了一个 打印 每次循环都是读两个 打印一个
作者:
孙利川
时间:
2012-4-10 15:45
本帖最后由 孙利川 于 2012-4-10 15:55 编辑
import java.io.*;
public class tReader
{
public static void main(String args[])
{
int x= 0;
FileReader fr = null;
try
{
fr = new FileReader("E:/Java Demo/testReader.java");
while((x = fr.read()) != -1)
//这是因为文件里有一个指针,每读出一个字符,指针就会往后偏移一个
//字符。这里已经读出一个字符,但这个字符没有被打印,但指针向下偏移一,接着下面的代码又读出一个
//字符,前后读出的这两个字符不是同一个字符,后面的这个字符才被打印出来,因此会打印不全。而改
//成System.out.print((char) x)后,该代码并不读取字符,而只是打印前一个读出的字符,每读出一
//个字符就会打印一次,因此会全部打印。
{
System.out.print((char)fr.read());//*+_我的问题在这!!}
fr.close();
}
catch(FileNotFoundException ex)
{
System.out.println("文件没有找到。");
System.exit(-1);
}
catch(IOException ioe)
{
System.out.println("文件读写错误");
System.exit(-1);
}
}
}
这样写“System.out.print((char) i );”可以全部打印出来,
System.out.print((char)fr.read());,如果这样写的话,这个文件打印不全
why??
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2