Prints a formatted string to standard output, using the specified format string and arguments, and then flushes standard output. @param format the format string @param args the arguments accompanying the for
(String format, Object... args)
| 279 | * @param args the arguments accompanying the format string |
| 280 | */ |
| 281 | public static void printf(String format, Object... args) { |
| 282 | out.printf(LOCALE, format, args); |
| 283 | out.flush(); |
| 284 | } |
| 285 | |
| 286 | /** |
| 287 | * Prints a formatted string to standard output, using the locale and |