阅读量:0
在Java中,format
是字符串类的一个方法,用于格式化字符串。它提供了以下功能:
- 格式化数字:可以使用格式化符号来指定数字的格式(如小数点位数、千位分隔符等)。
- 格式化日期和时间:可以使用格式化符号来指定日期和时间的格式(如年、月、日、小时、分钟、秒等)。
- 格式化货币:可以使用格式化符号来指定货币的格式(如货币符号、小数点位数等)。
- 格式化字符串:可以使用格式化符号来指定字符串的格式(如填充字符、对齐方式等)。
- 格式化百分比:可以使用格式化符号来将数字表示为百分比形式(如乘以100并添加百分号符号)。
例如,以下是使用format
方法格式化数字和日期的示例:
格式化数字:
int num = 1000; String formattedNum = String.format("%,d", num); System.out.println(formattedNum); // 输出: 1,000
格式化日期:
import java.util.Date; import java.text.SimpleDateFormat; Date now = new Date(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String formattedDate = sdf.format(now); System.out.println(formattedDate); // 输出: 当前日期和时间的格式化字符串
请注意,在上述示例中,format
方法返回一个格式化后的字符串,而不会修改原始字符串。