查询文件内容字节大小

Posted yangxiaohui227

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查询文件内容字节大小相关的知识,希望对你有一定的参考价值。

public class Demo {

    public static void main(String[] args) throws ParseException, IOException {

        FileInputStream fileInputStream = new FileInputStream("D:\Desktop\aa.txt");
        System.out.println(contentLength(fileInputStream));

    }

    public static long contentLength(InputStream is) throws IOException {

        try {
            long size = 0;
            byte[] buf = new byte[256];
            int read;
            while ((read = is.read(buf)) != -1) {
                size += read;
            }
            return size;
        }
        finally {
            try {
                is.close();
            }
            catch (IOException ex) {
            }
        }
    }
}

以上是关于查询文件内容字节大小的主要内容,如果未能解决你的问题,请参考以下文章

seek和tell的用法--获取文件内容大小(字节)

web代码片段

14.VisualVM使用详解15.VisualVM堆查看器使用的内存不足19.class文件--文件结构--魔数20.文件结构--常量池21.文件结构访问标志(2个字节)22.类加载机制概(代码片段

Faster 情感分析-task03

干货通俗理解自然语言处理中N-Gram模型

查找泡菜文件python的字节大小[重复]