如何自定义java的format模板

avatar
作者
筋斗云
阅读量:0

在Java中,可以使用String.format()方法来格式化字符串。要自定义格式模板,你需要创建一个包含占位符的字符串,然后使用String.format()方法将占位符替换为实际值。以下是一些常见的占位符和示例:

  1. %s:字符串占位符
  2. %d:整数占位符(十进制)
  3. %f:浮点数占位符
  4. %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来表示保留两位小数的浮点数。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!