在Java中,可以使用String.format()
方法来格式化字符串。要自定义格式模板,你需要创建一个包含占位符的字符串,然后使用String.format()
方法将占位符替换为实际值。以下是一些常见的占位符和示例:
%s
:字符串占位符%d
:整数占位符(十进制)%f
:浮点数占位符%n
:换行符示例:
public class CustomFormatTemplate {
public static void main(String[] args) {
String name = "张三";
int age = 25;
double height = 175.5;
// 自定义格式模板
String template = "姓名:%s%n年龄:%d%n身高:%.2f cm";
// 使用String.format()方法格式化字符串
String formattedString = String.format(template, name, age, height);
// 输出结果
System.out.println(formattedString);
}
}
输出结果:
姓名:张三
年龄:25
身高:175.50 cm
在这个示例中,我们创建了一个包含占位符的字符串模板,并使用String.format()
方法将占位符替换为实际值。注意,我们使用%.2f
来表示保留两位小数的浮点数。