首页 > 代码库 > 从磁盘读取一个文件到内存中,再打印到控制台
从磁盘读取一个文件到内存中,再打印到控制台
public class work3 {
public static void main(String[] args) throws IOException {
getFile();
}
//通过建立缓冲区和循环的方式来读取
public static void getFile() throws IOException{
//1.找目标文件
File file = new File("C:\\abcd\\12.5.txt");
//2.建立通道
FileInputStream fileInputStream = new FileInputStream(file);
//3.创建缓冲区
byte[] b = new byte[1024];
//4.读取数据
int count = 0;
while((count = fileInputStream.read(b))!=-1){
System.out.println(new String(b,0,count));
//是说把数组b中的元素付给String,0是指偏移量,从数组第0个开始
}
fileInputStream.close();
}
}
从磁盘读取一个文件到内存中,再打印到控制台
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。