美文网首页
获取本地文件大小的方法

获取本地文件大小的方法

作者: shenshizhong | 来源:发表于2017-06-09 15:41 被阅读27次

    有的时候需要获取手机中某个文件的大小,比如zip包或者图片的大小(注意不是目录),就可以使用以下方法:

    private voidgetFileSize(File file) {

    try{

    FileInputStream fileIn =newFileInputStream(file);

    FileChannel channel = fileIn.getChannel();

    try{

    longsize = channel.size();

    Log.e("getZipSize","getZipSize"+size);

    }catch(IOException e) {

    e.printStackTrace();

    }

    }catch(FileNotFoundException e) {

    e.printStackTrace();

    }

    }

    ps:我的博客:http://blog.csdn.NET/shenshizhong

    我的简书:http://www.jianshu.com/users/345daf0211ad/latest_articles

    相关文章

      网友评论

          本文标题:获取本地文件大小的方法

          本文链接:https://www.haomeiwen.com/subject/lokfqxtx.html