在Java中,可以使用`String`类中的`format`方法来格式化字符串。`format`方法使用类似于C语言的`printf`函数的格式规范来指定要格式化的字符串和变量。
以下是`String`类中`format`方法的基本用法示例:
```java
String name = "John";
int age = 25;
double height = 1.75;
String formattedString = String.format("My name is %s, I am %d years old, and my height is %.2f meters.", name, age, height);
System.out.println(formattedString);
```
输出结果为:
```
My name is John, I am 25 years old, and my height is 1.75 meters.
```
在上面的例子中,`%s`表示一个字符串占位符,`%d`表示一个整数占位符,`%.2f`表示一个浮点数占位符并指定保留两位小数。通过在格式化字符串中使用这些占位符,并在`String.format`方法的参数中提供相应的变量,可以将这些变量的值插入到格式化字符串中。
除了基本的占位符之外,还有许多其他格式规范可以用于格式化不同类型的变量。更多详细的格式规范可以参考Java官方文档。
另外,除了`String.format`方法,还可以使用`System.out.format`方法来直接在控制台输出格式化字符串,用法类似。