在Java中,除了可以使用printf方法對字符串進行格式化輸出外,還有其他幾種常用的方法可以用來格式化字符串:
String formattedString = String.format("Hello, %s! Today is %tF", "Alice", new Date());
System.out.println(formattedString);
String pattern = "Hello, {0}! Today is {1,date,yyyy-MM-dd}";
String formattedString = MessageFormat.format(pattern, "Alice", new Date());
System.out.println(formattedString);
StringJoiner joiner = new StringJoiner(", ", "Hello, ", "!");
joiner.add("Alice").add("Bob");
String formattedString = joiner.toString();
System.out.println(formattedString);
StringBuilder sb = new StringBuilder();
sb.append("Hello, ").append("Alice").append("!");
String formattedString = sb.toString();
System.out.println(formattedString);
這些方法都可以達到類似于printf方法的格式化效果,選擇合適的方法取決于具體的需求和習慣。