本帖最后由 刘涛 于 2011-11-28 18:15 编辑
主程序
import java.io.*;
public class Test1 {
public static void main(String[] args) {
int b = 0;
try {
FileInputStream f = new FileInputStream("F:a.txt");
for(int i=0; i<=10 && ( b = f.read())!=-1; i++)
System.out.print((char)f.read());
} catch(IOException e) {
e.printStackTrace();
}
}
}
为什么读到的内容跟文本的内容不一样啊 |
|