博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
String.format格式化
阅读量:6704 次
发布时间:2019-06-25

本文共 1984 字,大约阅读时间需要 6 分钟。

package hb.strformat;public class IntFormat {    public static void main(String[] args) {                int d = Integer.parseInt("99099");        System.out.println(d);        //格式化为整形型字符串        System.out.println(String.format("%d",d));        //整数长度为7,如果不到7位就用0填充        System.out.println(String.format("%07d",9909));        System.out.println(String.format("%07d",99099999));        //长度不满7就用空格填充        System.out.println(String.format("% 7d",9909));        //使用,对数字分组        System.out.println(String.format("%,d",9909999));        //显示正负数        System.out.println(String.format("%+d",d));        System.out.println(String.format("%+d",-345));    }}

 

package hb.strformat;public class FloatFormat {    public static void main(String[] args) {                double d = Double.parseDouble("9909999999.9999");        System.out.println(d);        //格式化为浮点型字符串        System.out.println(String.format("%f",d));        //整数部分全部显示,小数部分后面保留5位小数        System.out.println(String.format("%.5f",d));        //使用,对数字分组        System.out.println(String.format("%,f",d));        //显示正负数        System.out.println(String.format("%+f",d));        System.out.println(String.format("%+f",-345.98));        //算小数点后面的位数一起时15        System.out.println(String.format("%015f",345.98));        //小数点后面保留三位小数        System.out.println(String.format("%015.3f",345.98));    }}

 

package hb.strformat;import java.util.Date;public class DateFormat {    //%tx使用来专门格式化日期和时间的    public static void main(String[] args) {        Date now = new Date();        System.out.println("全部日期和时间信息:"+String.format("%tc", now));        System.out.println("年-月-日格式:"+String.format("%tF", now));        System.out.println("月/日/年格式:"+String.format("%tD", now));        System.out.println("HH:MM :"+String.format("%tR", now));        System.out.println("HH:MM:SS PM格式(12时制):"+String.format("%tr", now));        System.out.println("HH:MM:SS格式(24时制):"+String.format("%tT", now));    }}

 

原文:http://hbiao68.iteye.com/blog/1769053

转载地址:http://kiflo.baihongyu.com/

你可能感兴趣的文章
两天 写出简易数据库管理程序
查看>>
JAVA设计原则之依赖倒置原则
查看>>
SVN服务器从Windows迁移到LInux
查看>>
19_列的增删改
查看>>
C语言必看几个例题,懂后获益匪浅
查看>>
Citrix NetScaler VPX ---基础1
查看>>
【python项目实战】BBS论坛 (1)搭建项目框架
查看>>
ini 文件操作记要(2): 使用 TMemIniFile
查看>>
CentOS MySQL数据目录修改
查看>>
使用StarWind构建Hyper-V Server群集实时迁移
查看>>
在 Delphi 下使用 DirectSound (1): 枚举播放设备
查看>>
3.2 简单摇杆 上下左右
查看>>
MIT Introduction to Algorithms 学习笔记(八)
查看>>
Kibana功能之---Tile Map
查看>>
12款最佳的网站速度和性能测试工具
查看>>
基于LNMP搭建Typecho博客平台
查看>>
打不开Godaddy.com网站和域名无法解析的解决方法
查看>>
教你正确的CentOS磁盘配额
查看>>
MYSQL-Table is marked as crashed and last (automatic) re
查看>>
图片翻转
查看>>