91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

andorid storage total and free

發布時間:2020-07-09 23:31:37 來源:網絡 閱讀:900 作者:CamilleIT 欄目:移動開發

1 在Setting應用中,storage 顯示total and free code:

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<Object> volumes = (List<Object>) 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數據一致。
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

泉州市| 道孚县| 读书| 思南县| 嫩江县| 齐河县| 盐源县| 策勒县| 墨竹工卡县| 清镇市| 龙泉市| 南和县| 乡城县| 鄂托克旗| 平罗县| 汉川市| 通辽市| 古丈县| 中超| 南澳县| 屏山县| 高雄市| 阜平县| 神池县| 兴安盟| 宁津县| 博兴县| 邹平县| 徐州市| 九台市| 安达市| 南和县| 贡觉县| 佛冈县| 富锦市| 龙海市| 应用必备| 永仁县| 宜丰县| 深州市| 县级市|