IO流之FileInputStream
package com.io.inputstream_; import org.junit.jupiter.api.Test; import java.io.FileInputStream; import java.io.IOException; /** * FileInputStream */ public class FileInputStream_ { public static void main(String[] args) { } @Test public void readFile01(){ String filePath="d:\\hello.txt"; int readData=0; FileInputStream fileInputStream=null; try { fileInputStream=new FileInputStream(filePath); while ((readData=fileInputStream.read())!=-1){ System.out.print((char)readData);//读的时候是int类型,显示的时候要转成char类型 } } catch (IOException e) { e.printStackTrace(); }finally { try { fileInputStream.close(); } catch (IOException e) { e.printStackTrace(); } } } }
多个字节的读取,read(byte[] b)
从该输入流读取最多b.length字节的数据到字节数组。
package com.io.inputstream_; import org.junit.jupiter.api.Test; import java.io.FileInputStream; import java.io.IOException; /** * FileInputStream */ public class FileInputStream_ { public static void main(String[] args) { } @Test public void readFile01(){ String filePath="d:\\hello.txt"; //定义字节数组 byte[] buf=new byte[8];//一次读取8个字节 int readLen=0; FileInputStream fileInputStream=null; try { fileInputStream=new FileInputStream(filePath); while ((readLen=fileInputStream.read(buf))!=-1){ System.out.print(new String(buf,0,readLen));//读的时候是int类型,显示的时候要转成char类型 } } catch (IOException e) { e.printStackTrace(); }finally { try { fileInputStream.close(); } catch (IOException e) { e.printStackTrace(); } } } }
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本