ava.util.Formatter.ioException() 方法 Java.util.EnumMap.remove() 方法 Java.util.Formatter.locale() 方法 Java.util.Formatter.ioException() 方法 package com.codingdict; import java.util.Formatter; import java.util.Locale; public class FormatterDemo { public static void main(String[] args) { // create a new formatter StringBuffer buffer = new StringBuffer(); Formatter formatter = new Formatter(buffer, Locale.US); // format a new string String name = "World"; formatter.format("Hello %s !", name); // print the formatted string with default locale System.out.println("" + formatter); // print latest exception, which is null System.out.println("" + formatter.ioException()); } } Java.util.EnumMap.remove() 方法 Java.util.Formatter.locale() 方法