- public static void main(String[] args) throws IOException{
-
- //注释处,绝对路径,可以运行。
- //File f=new File("F:\\workspace\\exam2\\src\\com\\itheimai\\test\\a.txt");
- File f=new File("a.txt");//此处写相对路径,报系统找不到文件异常,但是在dos下可以运行。
- FileInputStream fis=new FileInputStream(f);
- byte[] b=new byte[5];
- int len=0;
- while((len=fis.read(b))!=-1){
- String s=new String(b,0,len);
- System.out.print(s);
- }
- fis.close();
- }
复制代码 |