大家好,又见面了,我是你们的朋友全栈君。
源码
package com.io;
import java.io.File;
import java.io.FileInputStream;
/** * @author yanyugang * @description * 1、FileInputStream读取文件内容 * @date 2019/10/13 10:26 */
public class FileInputStreamTest {
public static void main(String[] args) throws Exception {
// 文件路径
String path = "D:" + File.separator + "helloworld.txt";
FileInputStreamReadFile(path);
}
public static void FileInputStreamReadFile(String path) {
// JDK7 try-with-resources 自动释放资源
try (FileInputStream fis = new FileInputStream(new File(path))) {
byte[] buf = new byte[1024];
int len = 0;
while ((len=fis.read(buf)) != -1) {
System.out.println(new String(buf,0,len));
}
} catch (Exception e) {
}
}
}
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/132921.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...