一、起源
在日常开发过程中,总是会碰到很多不确定字符串拼接的时候,比如说有这样一个url,http://www.baidu.com?id=32"
,其中的id是个可变的字符常量,平常我们经常会使用append
进行拼接,那么今天我们来学习下使用String.format()进行更优雅的字符串替换。
二、展示
String.format()字符串常规类型格式化的两种重载方式
-
format(String format, Object… args)
新字符串使用本地语言环境,制定字符串格式和参数生成格式化的新字符串。 -
format(Locale locale, String format, Object… args)
使用指定的语言环境,制定字符串格式和参数生成格式化的字符串。
案例
@Test
public void urlTest(){
String url = "http://www.baidu.com?id=%s";
String format = String.format(url, "2");
log.info("替换后的url:{}",format);
}
输出的结果是:
替换后的url:http://www.baidu.com?id=2
上个栗子有用到了字符串类型的格式化 下面我把常用的类型例举出来
为了方便理解还是举个例子
@Test
public void allTest(){
String str=null;
str=String.format("Hi,%s", "小超");
System.out.println(str);
str=String.format("Hi,%s %s %s", "小超","是个","大帅哥");
System.out.println(str);
System.out.printf("字母c的大写是:%c %n", 'C');
System.out.printf("布尔结果是:%b %n", "小超".equals("帅哥"));
System.out.printf("100的一半是:%d %n", 100/2);
System.out.printf("100的16进制数是:%x %n", 100);
System.out.printf("100的8进制数是:%o %n", 100);
System.out.printf("50元的书打8.5折扣是:%f 元%n", 50*0.85);
System.out.printf("上面价格的16进制数是:%a %n", 50*0.85);
System.out.printf("上面价格的指数表示:%e %n", 50*0.85);
System.out.printf("上面价格的指数和浮点数结果的长度较短的是:%g %n", 50*0.85);
System.out.printf("上面的折扣是%d%% %n", 85);
System.out.printf("字母A的散列码是:%h %n", 'A');
}
结果为:
Hi,小超
Hi,小超 是个 大帅哥
字母c的大写是:C
布尔结果是:false
100的一半是:50
100的16进制数是:64
100的8进制数是:144
50元的书打8.5折扣是:42.500000 元
上面价格的16进制数是:0x1.54p5
上面价格的指数表示:4.250000e+01
上面价格的指数和浮点数结果的长度较短的是:42.5000
上面的折扣是85%
字母A的散列码是:41
搭配转换符还有实现高级功能
%tx x代表日期转换符 我也顺便列举下日期转换符
来个例子方便理解
@Test
public void timeTest(){
Date date=new Date();
//c的使用
System.out.printf("全部日期和时间信息:%tc%n",date);
//f的使用
System.out.printf("年-月-日格式:%tF%n",date);
//d的使用
System.out.printf("月/日/年格式:%tD%n",date);
//r的使用
System.out.printf("HH:MM:SS PM格式(12时制):%tr%n",date);
//t的使用
System.out.printf("HH:MM:SS格式(24时制):%tT%n",date);
//R的使用
System.out.printf("HH:MM格式(24时制):%tR",date);
}
结果输出为:
全部日期和时间信息:星期日 九月 22 11:08:35 CST 2019
年-月-日格式:2019-09-22
月/日/年格式:09/22/19
HH:MM:SS PM格式(12时制):11:08:35 上午
HH:MM:SS格式(24时制):11:08:35
HH:MM格式(24时制):11:08
网友评论