JAVA IO字节流读取文件文本

JAVA IO字节流读取文件文本,第1张

public static void read(String filePath){
    try(FileInputStream file = new FileInputStream(filePath)) {

        StringBuilder sb = new StringBuilder();
        int tem = 0;

        while ((tem=file.read())!=-1){
            sb.append((char) tem);
        }

        System.out.println(sb);

    } catch (FileNotFoundException e) {
        throw new RuntimeException(e);
    } catch (IOException e) {
        throw new RuntimeException(e);
    }
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/725563.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-26
下一篇 2022-04-26

发表评论

登录后才能评论

评论列表(0条)

保存