• Java InputStream如何读取文件呢?


    转自:

    Java InputStream如何读取文件呢?

    下文笔者将讲述InputStream读取文件的方法分享,如下所示:

    FileInputStream通过文件byte数组暂存文件中内容
    将其转换为String数据
    再根据“回车换行” 进行分割

    public static String[] readToString(String filePath) {
        File file = new File(filePath);
        Long filelength = file.length(); // 获取文件长度
        byte[] filecontent = new byte[filelength.intValue()];
        try {
            FileInputStream in =new FileInputStream(file); in .read(filecontent); in .close();
        } catch(FileNotFoundException e) {
            e.printStackTrace();
        } catch(IOException e) {
            e.printStackTrace();
        }
    
        String[] fileContentArr = new String(filecontent).split("\r\n");
    
        return fileContentArr; // 返回文件内容,默认编码
    }
    

    使用InputStream从文件里读取数据,在已知文件大小的情况下,建立合适的存储字节数组

    public class TestClass {
        public static void main(String args[]) throws Exception {
            File f = new File("E:" + File.separator + "test" + File.separator + "StreamDemo" + File.separator + "java265.txt");
            InputStream in =new FileInputStream(f);
            byte b[] = new byte[(int) f.length()]; //创建合适文件大小的数组
            in .read(b); //读取文件里的内容到b[]数组
            in .close();
            System.out.println(new String(b));
        }
    }
    

    使用InputStream从文件里读取数据
    当不知道文件大小时,可循环读取文件

    public static void main(String args[]) throws Exception {
        File f = new File("E:" + File.separator + "test" + File.separator + "StreamDemo" + File.separator + "java265.txt");
        InputStream in =new FileInputStream(f);
        byte b[] = new byte[1024];
        int len = 0;
        int temp = 0; //全部读取的内容都使用temp接收
        while ((temp = in.read()) != -1) { //当没有读取完时,继续读取
            b[len] = (byte) temp;
            len++;
        } in .close();
        System.out.println(new String(b, 0, len));
    }
  • 相关阅读:
    微服务开发平台 Spring Cloud Blade 部署实践
    Spring Boot默认日志框架配置简介说明
    云计算:重塑数字时代的基石
    mybatis批量查询效率对比
    数据结构-堆
    数位DP - 带49的数
    今日ac题
    react知识点
    【数据结构初阶】单链表补充内容+又双叒叕刷链表题
    LSTM内部结构及前向传播原理——LSTM从零实现系列(1)
  • 原文地址:https://blog.csdn.net/qq_25073223/article/details/126314712