大家好,又见面了,我是你们的朋友全栈君。
废话不多说, 直接上关键代码
package com.zhongjing.file;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
public class FileInputStreamDemo {
/**
* FileInputStream 字节输入流 –> 读取数据
* @param args
*/
public static void main(String[] args) {
FileInputStream fis = null;
File file = new File(“D:/test.txt”);
try {
fis = new FileInputStream(file);
byte[] buf = new byte[1024]; //数据中转站 临时缓冲区
int length = 0;
//循环读取文件内容,输入流中将最多buf.length个字节的数据读入一个buf数组中,返回类型是读取到的字节数。
//当文件读取到结尾时返回 -1,循环结束。
while((length = fis.read(buf)) != -1){
System.out.println(new String(buf, 0, length));
}
} catch (Exception e) {
e.printStackTrace();
}finally{
try {
fis.close();//强制关闭输入流
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
运行结果如下:
关于怎样使用FileOutStream写入内容请查看下面这篇文章 :
https://blog.csdn.net/qq_35661171/article/details/86539554
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/135165.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...