Java数字格式

当我看到其他人编写不必要的Java代码并且由于缺乏对已经提供所需功能的JDK类的了解而编写了不必要的Java代码时,我会想到很多次。 这样的一个例子是时间相关的常量的使用硬编码值的写入,如60 , 24 , 1440 ,和86400时TIMEUNIT提供了更好的,标准化的方法。 在这篇文章中,我看一看一个类的示例,该示例提供了开发人员经常在其上实现的功能: NumberFormat 。

NumberFormat类是java.text包的一部分,该包还包括常用的DateFormat和SimpleDateFormat类。 NumberFormat是一个抽象类(没有公共构造函数),其后代的实例是通过具有诸如getInstance() , getCurrencyInstanceInstance()和getPercentInstance()之类的重载静态方法获得的。

货币

下一个代码清单演示了如何调用NumberFormat.getCurrencyInstance(Locale)以获取NumberFormat的实例,该实例以货币友好格式显示数字。

演示NumberFormat的货币支持

/*** Demonstrate use of a Currency Instance of NumberFormat.*/
public void demonstrateCurrency()
{writeHeaderToStandardOutput("Currency NumberFormat Examples");final NumberFormat currencyFormat = NumberFormat.getCurrencyInstance(Locale.US);out.println("15.5      -> " + currencyFormat.format(15.5));out.println("15.54     -> " + currencyFormat.format(15.54));out.println("15.345    -> " + currencyFormat.format(15.345));  // rounds to two decimal placesprintCurrencyDetails(currencyFormat.getCurrency());
}/*** Print out details of provided instance of Currency.** @param currency Instance of Currency from which details*    will be written to standard output.*/
public void printCurrencyDetails(final Currency currency)
{out.println("Concurrency: " + currency);out.println("\tISO 4217 Currency Code:           " + currency.getCurrencyCode());out.println("\tISO 4217 Numeric Code:            " + currency.getNumericCode());out.println("\tCurrency Display Name:            " + currency.getDisplayName(Locale.US));out.println("\tCurrency Symbol:                  " + currency.getSymbol(Locale.US));out.println("\tCurrency Default Fraction Digits: " + currency.getDefaultFractionDigits());
}

执行以上代码后,结果如下所示:

==================================================================================
= Currency NumberFormat Examples
==================================================================================
15.5      -> $15.50
15.54     -> $15.54
15.345    -> $15.35
Concurrency: USDISO 4217 Currency Code:           USDISO 4217 Numeric Code:            840Currency Display Name:            US DollarCurrency Symbol:                  $Currency Default Fraction Digits: 2

上面的代码和相关的输出表明,用于货币的NumberFormat实例(实际上是DecimalFormat )会根据语言环境自动应用适当的位数和适当的货币符号。

百分比

下一个代码清单和相关的输出演示了NumberFormat使用,以百分比友好格式显示数字。

演示NumberFormat的百分比格式

/*** Demonstrate use of a Percent Instance of NumberFormat.*/
public void demonstratePercentage()
{writeHeaderToStandardOutput("Percentage NumberFormat Examples");final NumberFormat percentageFormat = NumberFormat.getPercentInstance(Locale.US);out.println("Instance of: " + percentageFormat.getClass().getCanonicalName());out.println("1        -> " + percentageFormat.format(1));// will be 0 because truncated to Integer by Integer divisionout.println("75/100   -> " + percentageFormat.format(75/100));out.println(".75      -> " + percentageFormat.format(.75));out.println("75.0/100 -> " + percentageFormat.format(75.0/100));// will be 0 because truncated to Integer by Integer divisionout.println("83/93    -> " + percentageFormat.format((83/93)));out.println("93/83    -> " + percentageFormat.format(93/83));out.println(".5       -> " + percentageFormat.format(.5));out.println(".912     -> " + percentageFormat.format(.912));out.println("---- Setting Minimum Fraction Digits to 1:");percentageFormat.setMinimumFractionDigits(1);out.println("1        -> " + percentageFormat.format(1));out.println(".75      -> " + percentageFormat.format(.75));out.println("75.0/100 -> " + percentageFormat.format(75.0/100));out.println(".912     -> " + percentageFormat.format(.912));
}
==================================================================================
= Percentage NumberFormat Examples
==================================================================================
1        -> 100%
75/100   -> 0%
.75      -> 75%
75.0/100 -> 75%
83/93    -> 0%
93/83    -> 100%
.5       -> 50%
.912     -> 91%
---- Setting Minimum Fraction Digits to 1:
1        -> 100.0%
.75      -> 75.0%
75.0/100 -> 75.0%
.912     -> 91.2%

代码和百分比的输出NumberFormat使用表明,通过默认的实例NumberFormat (实际上是一个DecimalFormat通过返回在这种情况下) NumberFormat.getPercentInstance(区域)的方法没有小数位,乘所提供的数目由100(假定它是(如果提供的话,则为百分比的十进制等效值 ),并添加一个百分号(%)。

整数

接下来显示的少量代码及其相关输出演示了NumberFormat使用,以整数格式显示数字。

演示NumberFormat的整数格式

/*** Demonstrate use of an Integer Instance of NumberFormat.*/
public void demonstrateInteger()
{writeHeaderToStandardOutput("Integer NumberFormat Examples");final NumberFormat integerFormat = NumberFormat.getIntegerInstance(Locale.US);out.println("7.65   -> " + integerFormat.format(7.65));out.println("7.5    -> " + integerFormat.format(7.5));out.println("7.49   -> " + integerFormat.format(7.49));out.println("-23.23 -> " + integerFormat.format(-23.23));
}
==================================================================================
= Integer NumberFormat Examples
==================================================================================
7.65   -> 8
7.5    -> 8
7.49   -> 7
-23.23 -> -23

如上面的代码和相关输出所示, NumberFormat方法getIntegerInstance(Locale)返回一个实例,该实例将提供的数字表示为整数。

固定位数

下一个代码清单和相关输出演示了如何使用NumberFormat打印浮点数的定点表示形式。 换句话说,使用NumberFormat可以使一个数字在小数点左侧(“整数”数字)和小数点右侧(“小数”数字)的正好具有规定位数的数字表示。

演示定点数字的NumberFormat

/*** Demonstrate generic NumberFormat instance with rounding mode,* maximum fraction digits, and minimum integer digits specified.*/
public void demonstrateNumberFormat()
{writeHeaderToStandardOutput("NumberFormat Fixed-Point Examples");final NumberFormat numberFormat = NumberFormat.getNumberInstance();numberFormat.setRoundingMode(RoundingMode.HALF_UP);numberFormat.setMaximumFractionDigits(2);numberFormat.setMinimumIntegerDigits(1);out.println(numberFormat.format(234.234567));out.println(numberFormat.format(1));out.println(numberFormat.format(.234567));out.println(numberFormat.format(.349));out.println(numberFormat.format(.3499));out.println(numberFormat.format(0.9999));
}
==================================================================================
= NumberFormat Fixed-Point Examples
==================================================================================
234.23
1
0.23
0.34
0.35
1

上面的代码和相关的输出演示了对最小“整数”位数的精确控制,该位数代表小数点左边(至少一个,因此在适用时显示为零)和最大“分数”小数点右边的数字。 尽管未显示,但也可以指定最大整数位数和最小分数位数。

结论

我曾经用过这篇文章来研究如何使用NumberFormat以不同的方式显示数字(货币,百分比,整数,固定的小数点等),并且通常意味着无需编写或减少代码即可将数字写成数字格式。 当我第一次开始写这篇文章时,我设想包括有关NumberFormat的直接后代( DecimalFormat和ChoiceFormat )的示例和讨论,但是已经确定这篇文章已经足够冗长了。 我可能会在以后的博客文章中介绍NumberFormat这些后代。

翻译自: https://www.javacodegeeks.com/2014/08/java-numeric-formatting.html

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

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

相关文章

数据模型设计

数据:是符号。例如 张三 模型:现实世界事与物特征的抽象与模拟。如飞机模型、空气动力模型。 数据模型:通过对现实世界的事与物主要特征的分析、抽象,为信息系统的实施提供数据存取的数据结构以及相应的约束。 数据模型的要素由操…

优课在线 嵌入式系统(胡威)2018春季测验 参考解析

一、单选题 (共 20.00 分) μCOS-II操作系统属于( )。 A.一般实时操作系统 B.非嵌入式实时操作系统 C.占先式实时操作系统 D.非占先式实时操作系统 正确答案:C 寄存器R13除了可以做通用寄存器外,还可以做( &#xff0…

JBoss Wildfly 8.1上的HawtIO

HawtIO为基于JVM的中间件提供了令人赞叹的视觉效果。 它是应用程序的统一控制台,否则将不得不构建自己的糟糕的Web控制台。 老实说,它们的构建方式各不相同,技术不同,用户体验不同,并且都围绕一种可怕的方式来尝试在QA…

Maven打包时去掉项目版本号

Maven打包时去掉项目版本号 Maven打包后&#xff0c;jar或war文件名里带有版本号信息&#xff0c;如projectname0.0.1-SNAPSHOT.jar等&#xff0c;怎么去掉呢&#xff1f; 解决办法&#xff1a; 打开项目pom.xml文件&#xff0c;在<build> </build>标签内加入如下…

jsp实现上一页下一页翻页功能

前段时间一直忙于期末考试和找实习&#xff0c;好久没写博客了。 这段时间做了个小项目&#xff0c;包含了翻页和富文本编辑器Ueditor的两个知识点,Ueditor玩的还不是很深&#xff0c;打算玩深后再写篇博客。 要实现翻页功能&#xff0c;只需要设置一个pageIndex即可&#xf…

学习笔记之postgresql

/*************************************************************************创建人&#xff1a;LYK 创建时间&#xff1a;2019/05/05 14:47IDE: vs2013 库版本&#xff1a;32位 静态库数据库管理平台 pgAdmin III -- postgresql 注意事项&#xff1a;1&#xff0c;添加头文件…

Delphi关于多线程同步的一些方法

(注&#xff1a;本文为转载 http://hi.baidu.com/navy1130/blog/item/468fcdc448794fce38db49ee.html)线程是进程内一个相对独立的、可调度的执行单元。一个应用可以有一个主线程&#xff0c;一个主线程可以有多个子线程&#xff0c;子线程还可以有自己的子线程&#xff0c;这…

自定义Cassandra数据类型

在博客文章《 从Java连接到Cassandra》中 &#xff0c;我提到了用Java 实现的Cassandra Java开发人员的一个优势是能够创建自定义 Cassandra数据类型 。 在这篇文章中&#xff0c;我将详细介绍如何执行此操作。 Cassandra具有许多内置的数据类型 &#xff0c;但是在某些情况下…

Linux下如何查看版本信息

Linux下如何查看版本信息 Linux下如何查看版本信息&#xff0c; 包括位数、版本信息以及CPU内核信息、CPU具体型号等等&#xff0c;整个CPU信息一目了然。一些常用的 Linux 命令 1、# uname &#xff0d;a &#xff08;Linux查看版本当前操作系统内核信息&#xff09; [hadoopa…

Docker的安装及注意事项

Docker 是一个开源的应用容器引擎&#xff0c;基于 Go 语言 并遵从Apache2.0协议开源。 Docker 可以让开发者打包他们的应用以及依赖包到一个轻量级、可移植的容器中&#xff0c;然后发布到任何流行的 Linux 机器上&#xff0c;也可以实现虚拟化。容器是完全使用沙箱机制&#…

基于CSS的个人网页

前端时间做的CSS作业&#xff1a;基于CSS的个人网页 基于CSS的个人网页 效果图&#xff1a; 代码&#xff1a; <!DOCTYPE html> <html> <head><meta charset"utf-8"><title>吴广林的个人博客</title><link rel"styles…

不重复int数组里找不存在的值

有这么一道题&#xff0c;一个int数组叫A&#xff0c;里面的数是不重复的&#xff0c;从中拿出一个值&#xff0c;剩下的数组就B&#xff0c;问拿出的是哪个数。 一般人都能想到把A数组值相加&#xff0c;假设和为sum1&#xff0c;再把B数组值相加&#xff0c;设其和为sum2&…

Java验证(javafx)

验证是核心javafx框架所缺少的一件事。 为了填补这一空白&#xff0c; controlsfx中已经存在一个第三方验证库 。 但是&#xff0c;我有一个问题&#xff1a;它不是在考虑FXML的情况下创建的。 这并不是说它不是一个很好的库&#xff0c;只是错过了这个细节&#xff0c;对我来说…

WAP自助建站 我编程之路的启蒙

如题所示的这篇文章是我心血来潮在网上搜索到的&#xff0c;写的挺让我感同身受的&#xff0c;不妨先看一下原文吧。 原文 不知是偶然还是“冥冥定数”&#xff0c;最后一次访问娃派建站&#xff08;wap.ai&#xff09;已有数十月之久了&#xff0c;突然心血来潮想看看曾经的建…

React事件绑定几种方法测试

前提 es6写法的类方法默认没有绑定this&#xff0c;不手动绑定this值为undefined。 因此讨论以下几种绑定方式。 一、构造函数constructor中用bind绑定 class App extends Component {constructor (props) {super(props)this.state {t: t}// this.bind1 this.bind1.bind(…

初始socket模块和巧解粘包问题

1.什么是socket&#xff1f; 两个进程如果需要进行通讯最基本的一个前提能够唯一的标示一个进程&#xff0c;在本地进程通讯中我们可以使用PID来唯一标示一个进程&#xff0c;但PID只在本地唯一&#xff0c;网络中的两个进程PID冲突几率很大&#xff0c;这时候我们需要另辟它径…

100325 雨

回家以后怎么样&#xff1f; 感冒没有严重吧&#xff1f; 你也多喝水 我好些了 鼻涕不像昨天那么多了 就是嗓子疼 药吃了 喝了不少水了转载于:https://www.cnblogs.com/loverain/archive/2010/03/25/1694567.html

Java的挥发性修饰符

不久前&#xff0c;我编写了一个Java servlet过滤器&#xff0c;该过滤器在其init函数中加载配置&#xff08;基于web.xml的参数&#xff09;。 筛选器的配置缓存在私有字段中。 我在字段上设置了volatile修饰符。 后来&#xff0c;当我检查Sonar公司以查看是否在代码中发现任…

webpack常用loader和plugin及打包速度优化

优化 或 也可以用&#xff1a; 备用&#xff1a; 慎用的配置&#xff0c;用的不好会增加打包时间&#xff1a; 代码丑化插件&#xff1a; 更多专业前端知识&#xff0c;请上 【猿2048】www.mk2048.com

nvl 函数

nvl(oie.is_eval,N) <> Y 理解成 oie.is_eval <> Y 转载于:https://www.cnblogs.com/wangchuanfu/p/10818274.html