189 8069 5689

andorid storagetotalandfree

1 在Setting应用中,storage 显示total and free code:

成都创新互联公司长期为1000多家客户提供的网站建设服务,团队从业经验10年,关注不同地域、不同群体,并针对不同对象提供差异化的产品和服务;打造开放共赢平台,与合作伙伴共同营造健康的互联网生态环境。为巫山企业提供专业的成都网站建设、网站设计,巫山网站改版等技术服务。拥有十多年丰富建站经验和众多成功案例,为您定制开发。

final File path = VolumeInfo.getPath();
final long freeBytes = path.getFreeSpace();
final long totalBytes = path.getTotalSpace();
final long usedBytes = totalBytes - freeBytes;

final String used = Formatter.formatFileSize(context, usedBytes);
final String total = Formatter.formatFileSize(context, totalBytes);
2 VolumeInfo.java 是hidden的,只能通过反射得到。代码如下:
try {
    StorageManager sManager = (StorageManager) context.getSystemService(Context.STORAGE_SERVICE);
    Class class_StorageManager = StorageManager.class;
    Method method_getVolumes = class_StorageManager.getMethod("getVolumes");

    List volumes = (List) method_getVolumes.invoke(sManager);

    mClassType = Class.forName("android.os.storage.VolumeInfo");

    for (Object volumeInfo : volumes) {

        mGetMethod = mClassType.getDeclaredMethod("getPath");
        File path = (File) mGetMethod.invoke(volumeInfo);
        final long freeBytes = path.getFreeSpace();
        final long totalBytes = path.getTotalSpace();
        final long usedBytes = totalBytes - freeBytes;

        Log.i("cyy1","freeBytes="+Formatter.formatFileSize(context,freeBytes));

        Log.i("cyy1","usedBytes="+Formatter.formatFileSize(context,usedBytes));

         mGetMethod1 = mClassType.getDeclaredMethod("getId");
        String  id = (String) mGetMethod1.invoke(volumeInfo);
        Log.i("cyy1","id="+id);
    }



}catch (Exception e){
    Log.i("cyy1",e.getMessage());
    e.printStackTrace();
}
得到数据:
08-18 17:28:31.087 32148-32148/ I/cyy1: freeBytes=190 MB
08-18 17:28:31.088 32148-32148/ I/cyy1: usedBytes=22.68 GB
08-18 17:28:31.088 32148-32148/ I/cyy1: id=private
08-18 17:28:31.088 32148-32148/ I/cyy1: freeBytes=9.90 MB
08-18 17:28:31.088 32148-32148 I/cyy1: usedBytes=22.84 GB
08-18 17:28:31.088 32148-32148/ I/cyy1: id=emulated
其中emulated 是external stroage的数据。而private 是data的数据

3 可以通过以下code验证:
File path = Environment.getExternalStorageDirectory();
StatFs stat = new StatFs(path.getPath());
long blockSize = stat.getBlockSizeLong();
long blockCount = stat.getBlockCountLong();
long availableBlocks = stat.getAvailableBlocksLong();
long avaibByte =   stat.getAvailableBytes();
Log.i("cyy","avaibByte="+Formatter.formatFileSize(context,avaibByte));
long free= stat.getFreeBytes();
Log.i("cyy","free="+Formatter.formatFileSize(context,free));

String totalSize = Formatter.formatFileSize(context, blockCount*blockSize);
String availableSize = Formatter.formatFileSize(context, availableBlocks*blockSize);

Environment.getExternalStorageDirectory() 跟emulated 数据一致;Environment.getDataDirectory()       
和private数据一致。

本文标题:andorid storagetotalandfree
网页URL:http://cdxtjz.cn/article/jsgpdj.html

联系我们

您好HELLO!
感谢您来到成都网站建设公司,若您有合作意向,请您为我们留言或使用以下方式联系我们, 我们将尽快给你回复,并为您提供真诚的设计服务,谢谢。
  • 电话:028- 86922220 18980695689
  • 商务合作邮箱:631063699@qq.com
  • 合作QQ: 532337155
  • 成都网站设计地址:成都市青羊区锣锅巷31号五金站写字楼6楼

小谭建站工作室

成都小谭网站建设公司拥有多年以上互联网从业经验的团队,始终保持务实的风格,以"帮助客户成功"为已任,专注于提供对客户有价值的服务。 我们已为众企业及上市公司提供专业的网站建设服务。我们不只是一家网站建设的网络公司;我们对营销、技术、管理都有自己独特见解,小谭建站采取“创意+综合+营销”一体化的方式为您提供更专业的服务!

小谭观点

相对传统的成都网站建设公司而言,小谭是互联网中的网站品牌策划,我们精于企业品牌与互联网相结合的整体战略服务。
我们始终认为,网站必须注入企业基因,真正使网站成为企业vi的一部分,让整个网站品牌策划体系变的深入而持久。