欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java String.format()的用法

程序员文章站 2022-03-13 10:51:47
string.format()字符串常规类型格式化的两种重载方式 format(string format, object… args) 新字符串使用本地语言环境,制定字符串格式和参数生成格式化...

string.format()字符串常规类型格式化的两种重载方式

  • format(string format, object… args) 新字符串使用本地语言环境,制定字符串格式和参数生成格式化的新字符串。
  • format(locale locale, string format, object… args) 使用指定的语言环境,制定字符串格式和参数生成格式化的字符串。

常用的类型:

Java String.format()的用法

举个例子:

1. string str=null;
        2. str=string.format("hi,%s", "小超");
        3. system.out.println(str);
        4. str=string.format("hi,%s %s %s", "小超","是个","大帅哥");
        5. system.out.println(str);
        6. system.out.printf("字母c的大写是:%c %n", 'c');
        7. system.out.printf("布尔结果是:%b %n", "小超".equal("帅哥"));
        8. system.out.printf("100的一半是:%d %n", 100/2);
        9. system.out.printf("100的16进制数是:%x %n", 100);
        10. system.out.printf("100的8进制数是:%o %n", 100);
        11. system.out.printf("50元的书打8.5折扣是:%f 元%n", 50*0.85);
        12. system.out.printf("上面价格的16进制数是:%a %n", 50*0.85);
        13. system.out.printf("上面价格的指数表示:%e %n", 50*0.85);
        14. system.out.printf("上面价格的指数和浮点数结果的长度较短的是:%g %n", 50*0.85);
        15. system.out.printf("上面的折扣是%d%% %n", 85);
        16. system.out.printf("字母a的散列码是:%h %n", 'a');
        输出结果
        1. hi,小超
        2. hi,小超 是个 大帅哥
        3. 字母c的大写是:c
        4. 布尔的结果是:false
        5. 100的一半是:50
        6. 100的16进制数是:64
        7. 100的8进制数是:144
        8. 50元的书打8.5折扣是:42.500000 元
        9. 上面价格的16进制数是:0x1.54p5
        10. 上面价格的指数表示:4.250000e+01
        11. 上面价格的指数和浮点数结果的长度较短的是:42.5000
        12. 上面的折扣是85%
        13. 字母a的散列码是:41
        ###搭配转换符还有实现高级功能 第一个例子中有用到 $

Java String.format()的用法

第一个例子中有说到 %tx x代表日期转换符 我也顺便列举下日期转换符

Java String.format()的用法

举个例子:

1. date date=new date();                                  
2. //c的使用  
3. system.out.printf("全部日期和时间信息:%tc%n",date);          
4. //f的使用  
5. system.out.printf("年-月-日格式:%tf%n",date);  
6. //d的使用  
7. system.out.printf("月/日/年格式:%td%n",date);  
8. //r的使用  
9. system.out.printf("hh:mm:ss pm格式(12时制):%tr%n",date);  
10. //t的使用  
11. system.out.printf("hh:mm:ss格式(24时制):%tt%n",date);  
12. //r的使用  
13. system.out.printf("hh:mm格式(24时制):%tr",date);  
输出结果
1. 全部日期和时间信息:星期三 九月 21 22:43:36 cst 2016  
2. 年-月-日格式:2016-09-21
3. 月/日/年格式:16/10/21  
4. hh:mm:ss pm格式(12时制):10:43:36 下午  
5. hh:mm:ss格式(24时制):22:43:36  
hh:mm格式(24时制):22:43

总结

本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注的更多内容!