从磁盘读取一个文件到内存中,再打印到控制台

Posted 曾梦垚

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从磁盘读取一个文件到内存中,再打印到控制台相关的知识,希望对你有一定的参考价值。

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();

}

以上是关于从磁盘读取一个文件到内存中,再打印到控制台的主要内容,如果未能解决你的问题,请参考以下文章

如何控制grub从磁盘加载到内存中的内容量?

java题 任选一个文件,使用文件输入流,将其数据读取出来,并打印到控制台!! 代码简单能够有注释

linux内存

玩转 ByteBuffer

从计算机javascript读取文件并打印console.log它不打印

是否从内存或磁盘读取 Settings.Default