public class FileInputStreamTest { public static void main(String[] args) throws IOException { var fis = new FileInputStream("FileInputStreamTest.java"); var bbuf = new byte[1024]; var hasRead = 0; while ((hasRead = fis.read(bbuf)) > 0){ System.out.println(new String(bbuf,0,hasRead)); } fis.close(); } }
原文地址:https://www.cnblogs.com/lianghong881018/p/11302410.html
时间: 2024-10-11 01:33:33