赞
踩
在编写代码过程中,我们往往会遇到下面此种需求。
对不起,银行的年利率为 5%
要求: 输出以上这句话,但是5是可变的。
String templateStr="对不起,银行的年利率为%s%";
System.out.println(String.format(templateStr,"10"));
对不起,银行的年利率为10%
java.util.UnknownFormatConversionException: Conversion = '%'
这啥意思,就是String.format在格式化的时候,发现多了一个%,它一下子不认识了,以为可能有2个占位符,但是又少了s,所以报错了。
将模板内容改成传入2个参数.
String templateStr="对不起,银行的年利率为%s%s";
System.out.println(String.format(templateStr,"10","%"));
//输出结果:对不起,银行的年利率为10%
将多余的%进行转义 %%相当于转义了% 跟以前用的 \转义类似,只不过这里是用%
String templateStr="对不起,银行的年利率为%s%%";
System.out.println(String.format(templateStr,"10"));
//输出结果:对不起,银行的年利率为10%
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。