首页 > 读取文件
头像
爱交友的ssr在刷题
发布于 2021-01-07 20:51
+ 关注

读取文件

import java.io.FileInputStream;  public class Demo4 { public static void main(String[] args) throws Exception{
        FileInputStream fis=new FileInputStream("f:\\qq账号.txt");  /*int data=0;  while((data=fis.read())!=-1){  System.out.print((char)data);  }*/  byte[] buf=new byte[11];  int count=0;  while((count=fis.read(buf))!=-1){
            System.out.println(new String(buf,0,count));  }
        fis.close();  }
}

全部评论

(0) 回帖
加载中...
话题 回帖

推荐话题

相关热帖

近期热帖

近期精华帖

热门推荐