在Java中,有多种方法可以进行格式化输出,其中最常用的包括:
String.format("格式化字符串", 参数1, 参数2, ...);
System.out.printf("格式化字符串", 参数1, 参数2, ...);
DecimalFormat df = new DecimalFormat("格式化模式");
String formattedNumber = df.format(数字);
SimpleDateFormat sdf = new SimpleDateFormat("格式化模式");
String formattedDate = sdf.format(日期对象);
String formattedMessage = MessageFormat.format("格式化消息", 参数1, 参数2, ...);
这些方法可以根据需求对字符串、数字、日期等进行格式化输出,提高程序的可读性和美观性。