Android 格式化存储之Formatter

格式化存储相关的数值时,可以用 android.text.format.Formatter

Formatter.formatFileSize(Context context, long sizeBytes)

源码说明,在 Android O 后,存储单位的进制是 1000 ,Android N 之前单位进制是 1024 。

/*** Formats a content size to be in the form of bytes, kilobytes, megabytes, etc.** <p>As of O, the prefixes are used in their standard meanings in the SI system, so kB = 1000* bytes, MB = 1,000,000 bytes, etc.</p>** <p class="note">In {@link android.os.Build.VERSION_CODES#N} and earlier, powers of 1024 are* used instead, with KB = 1024 bytes, MB = 1,048,576 bytes, etc.</p>** <p>If the context has a right-to-left locale, the returned string is wrapped in bidi* formatting characters to make sure it's displayed correctly if inserted inside a* right-to-left string. (This is useful in cases where the unit strings, like "MB", are* left-to-right, but the locale is right-to-left.)</p>** @param context Context to use to load the localized units* @param sizeBytes size value to be formatted, in bytes* @return formatted string with the number*/public static String formatFileSize(@Nullable Context context, long sizeBytes) {return formatFileSize(context, sizeBytes, FLAG_SI_UNITS);}

它采用四舍五入,保留两位小数,自动补全 kB 、MB、GB 等单位。
示例,注释即是运行结果

	private void testFormatFileSize(){long size0 = 1000; // 1.00 kBlong size1 = 1024; // 1.02 kBlong size2 = 1000 * 1000; // 1.00 MBlong size3 = 1000 * 1000 * 1000; // 1.00 GBlong size4 = size3 + 30 * size2; // 1.03 GBlong size5 = size3 + 519 * size2; //  1.52 GBString result0 = Formatter.formatFileSize(MainActivity.this, size0);String result1 = Formatter.formatFileSize(MainActivity.this, size1);String result2 = Formatter.formatFileSize(MainActivity.this, size2);String result3 = Formatter.formatFileSize(MainActivity.this, size3);String result4 = Formatter.formatFileSize(MainActivity.this, size4);String result5 = Formatter.formatFileSize(MainActivity.this, size5);Log.d("test" , "[MainActivity] -- formatFileSize -- result0 : " + result0);Log.d("test" , "[MainActivity] -- formatFileSize -- result1 : " + result1);Log.d("test" , "[MainActivity] -- formatFileSize -- result2 : " + result2);Log.d("test" , "[MainActivity] -- formatFileSize -- result3 : " + result3);Log.d("test" , "[MainActivity] -- formatFileSize -- result4 : " + result4);Log.d("test" , "[MainActivity] -- formatFileSize -- result5 : " + result5);}

Formatter.formatShortFileSize(Context context, long sizeBytes)

源码说明,

/*** Like {@link #formatFileSize}, but trying to generate shorter numbers* (showing fewer digits of precision).*/public static String formatShortFileSize(@Nullable Context context, long sizeBytes) {if (context == null) {return "";}final BytesResult res = formatBytes(context.getResources(), sizeBytes,FLAG_SI_UNITS | FLAG_SHORTER);return bidiWrap(context, context.getString(com.android.internal.R.string.fileSizeSuffix,res.value, res.units));}

它采用四舍五入,保留一位小数,自动补全 kB 、MB、GB 等单位。
示例,注释即是运行结果

	private void testFormatShortFileSize(){long size0 = 1000; // 1.0 kBlong size1 = 1024; // 1.0 kBlong size2 = 1000 * 1000; // 1.0 MBlong size3 = 1000 * 1000 * 1000; // 1.0 GBlong size4 = size3 + 256 * size2; // 1.3 GBString result0 = Formatter.formatShortFileSize(MainActivity.this, size0);String result1 = Formatter.formatShortFileSize(MainActivity.this, size1);String result2 = Formatter.formatShortFileSize(MainActivity.this, size2);String result3 = Formatter.formatShortFileSize(MainActivity.this, size3);String result4 = Formatter.formatShortFileSize(MainActivity.this, size4);Log.d("test" , "[MainActivity] -- testFormatShortFileSize -- result0 : " + result0);Log.d("test" , "[MainActivity] -- testFormatShortFileSize -- result1 : " + result1);Log.d("test" , "[MainActivity] -- testFormatShortFileSize -- result2 : " + result2);Log.d("test" , "[MainActivity] -- testFormatShortFileSize -- result3 : " + result3);Log.d("test" , "[MainActivity] -- testFormatShortFileSize -- result4 : " + result4);}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/80444.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【ARM Coresight 系列文章 21 -- SoC-400 介绍 】

文章目录 1. Coresight SoC-4001.1 DAP 组件1.2 SWJ-DP1.3 DAPBUS互联1.4 AXI-AP1.5 APB-AP2. 互联2.1 APB互联组件2.2 ATB互联组件2.2.1 replicator2.2.2 funnel2.2.3 upsizer2.2.4 downsizer2.2.5 asynchronous bridge2.2.6 synchronous bridge3. Timestamp 组件4. ECT组件&l…

C【动态内存管理】

1. 为什么存在动态内存分配 int val 20;//在栈空间上开辟四个字节 char arr[10] {0};//在栈空间上开辟10个字节的连续空间 2. 动态内存函数的介绍 2.1 malloc&#xff1a;stdlib.h void* malloc (size_t size); int* p (int*)malloc(40); #include <stdlib.h> #incl…

Web服务(Web Service)

简介 Web服务&#xff08;Web Service&#xff09;是一种Web应用开发技术&#xff0c;用XML描述、发布、发现Web服务。它可以跨平台、进行分布式部署。 Web服务包含了一套标准&#xff0c;例如SOAP、WSDL、UDDI&#xff0c;定义了应用程序如何在Web上实现互操作。 Web服务的服…

非对称加密系统和LINUX实践

对称加密和非对称加密 非对称加密: 非对称加密是一种加密技术,它使用一对密钥来进行数据的加密和解密,这一对密钥分别称为公钥(public key)和私钥(private key)。这两个密钥是数学相关的,并且彼此相关,但不能相互推导出来。 以下是非对称加密的基本工作原理: 公钥…

类与对象的创建

package com.mypackage.oop.later;//学生类 //类里面只存在属性和方法 public class Student {//属性&#xff1a;字段//在类里面方法外面定义一个属性&#xff08;或者说是变量&#xff09;&#xff0c;然后在方法里面对他进行不同的实例化String name; //会有一个默认值&…

Android studio 断点调试、日志断点

目录 参考文章参考文章1、运行调试2、调试操作3、断点类型行断点的使用场景属性断点的使用场景异常断点的使用场景方法断点的使用场景条件断点日志断点 4、断点管理区 参考文章 参考文章 1、运行调试 开启 Debug 调试模式有两种方式&#xff1a; Debug Run&#xff1a;直接…

windows下C++的反射功能

概述 c/c如果在日志中查看某个结构体/类的每个变量名&#xff0c;变量值信息&#xff0c;只能通过printf逐个格式化&#xff0c;非常繁琐&#xff0c;如何做到类似protobuff转json的序列化功能呢&#xff1f;该dll库先通过分析pdb文件获取结构体/类的变量名称、变量地址&#…

vue3将页面导出成PDF文件(完美解决图片、表格内容分割问题)

vue3将页面导出成PDF文件&#xff08;完美解决图片、表格内容分割问题&#xff09; 1、安装依赖2、在utils中创建htmlToPDF.js文件3、在vue中引入并使用 1、安装依赖 npm install --save html2canvas // 页面转图片 npm install jspdf --save // 图片转pdf2、在utils中创建h…

数据驱动成功:小程序积分商城的数据分析

在当今数字化时代&#xff0c;数据被认为是企业成功的关键。小程序积分商城是一种流行的营销工具&#xff0c;可帮助企业吸引和留住客户&#xff0c;并提供有关客户行为和偏好的宝贵数据。本文将深入探讨如何通过数据分析实现小程序积分商城的成功&#xff0c;包括数据的收集、…

Linux内核 6.6版本将遏制NVIDIA驱动的不正当行为

Linux 内核开发团队日前宣布&#xff0c;即将发布的 Linux 6.6 版本将增强内核模块机制&#xff0c;以更好地防御 NVIDIA 闭源驱动的不正当行为。 Linux 内核开发团队日前宣布&#xff0c;即将发布的 Linux 6.6 版本将增强内核模块机制&#xff0c;以更好地防御 NVIDIA 闭源驱…

linux shell操作- 02 常用命令及案例

文章目录 常用命令 续 常用命令 续 定时任务 通过文本编辑cron任务&#xff0c;实现定时操作 分 小时 天 月 星期 绝对路径sh or cmd* 表示每个xxx&#xff0c;如每个小时每小时的第三分钟执行cmd-> 03 * * * * /home/lauf/scraw.sh每天的第5、8个小时执行-> 00 5,8 * *…

Golang反射相关知识总结

1. Golang反射概述 Go语言的反射&#xff08;reflection&#xff09;是指在运行时动态地获取类型信息和操作对象的能力。在Go语言中&#xff0c;每个值都是一个接口类型&#xff0c;这个接口类型包含了这个值的类型信息和值的数据&#xff0c;因此&#xff0c;通过反射&#x…

C/C++—Inline关键词

1、引入 inline 关键字的原因 在 c/c 中&#xff0c;为了解决一些频繁调用的小函数大量消耗栈空间&#xff08;栈内存&#xff09;的问题&#xff0c;特别的引入了 inline 修饰符&#xff0c;表示为内联函数。 在系统下&#xff0c;栈空间是有限的&#xff0c;假如频繁大量的…

大二上学期学习计划

这个学期主要学习的技术有SpringBoot&#xff0c;Vue&#xff0c;MybatisPlus&#xff0c;redis&#xff0c;还有要坚持刷题&#xff0c;算法不能落下&#xff0c;要坚持一天至少刷2道题目&#xff0c;如果没有布置任务就刷洛谷上面的&#xff0c;有任务的话就尽量完成任务&…

win11 Windows hello录入指纹失败解决方法

刚换了xps&#xff0c;启用了administrator账号&#xff0c;win11专业版&#xff0c;发现使用Windows hello录入指纹时&#xff0c;只要一录指纹就立即出错 尝试卸载重装设备驱动--无效 把Windows update更新到最新--无效 最后查到&#xff0c;是Windows对administrator账户进…

在MuJoCo环境下详细实现PPO算法与Hopper-v2应用教程: 深度学习强化学习实战指南

第一部分:简介与MuJoCo环境的配置 1.简介 强化学习已经在许多任务中展现了其强大的能力,从简单的游戏到复杂的机器人控制。今天,我们将集中讨论PPO(Proximal Policy Optimization)算法,一个已经被证明在多种任务中具有卓越性能的强化学习算法。特别地,我们将在MuJoCo模…

【React】React入门

目录 一、何为React二、React与传统MVC的关系三、React的特性1、声明式编程①、实现标记地图 2、高效灵活3、组件式开发(Component)①、函数式组件②、类组件&#xff08;有状态组件&#xff09;③、一个组件该有的特点 4、单向式响应的数据流 四、虚拟DOM1、传统DOM更新①、举…

配置Swagger开发环境有效,生产环境无效

安全扫描&#xff1a;通用信息泄漏【未授权访问ip:端口号/swagger-ui.html】 步骤一&#xff1a;配置启用变量【开发环境可用生产环境不可用】 application-dev.yml: swagger:enable: true application-pro.yml: swagger:enable: false 步骤二&#xff1a;根据配置变量控…

three3D的vite+vue版本基础代码

自己稍微处理一下目录结构 <script setup>// 导入three.js import * as THREE from three// 创建场景 const scene new THREE.Scene();// 创建相机 const camera new THREE.PerspectiveCamera(45, //视角window.innerWidth / window.innerHeight, //宽高比0.1, // 近平…

Ajax fetch navigator.sendBeacon 三个的区别

Ajax、fetch 和 navigator.sendBeacon 是用于发送网络请求的不同方法。 Ajax: Ajax 是一种传统的用于发送异步请求的技术。它使用 XMLHttpRequest 对象来发送数据和接收响应。通过创建 XMLHttpRequest 对象&#xff0c;你可以通过调用其 open() 方法指定请求的类型和 URL&#…