package base.day8;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
public class FileInputStreamDemo {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
//第一步:创建源
String filename = "G:\\java\\workspace1\\" +
"javaenhance\\src\\base\\" +
"day8\\FileInputStreamDemo.java";
//第二步:创建管道
InputStream in = new FileInputStream(filename);
//第三步:读写操作
byte[] buff = new byte[1024];//定义缓冲区
int len;//读到文件末尾,结束标记!!!!
while((len = in.read(buff)) !=-1 ) {//当len等于-1,文件结束。
System.out.println(new String(buff,0,buff.length));
}
System.out.println("------------------");
in.close();
}
}
那上面标红的在myeclipse中编译怎么不报错??? |