import java.util.*; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { //定义map容器存储按键对应数字字符的容器 private static Map<String, String> map = new HashMap<>(); //静态初始化、加载map容器 static { map.put("1", "1"); map.put("abc", "2"); map.put("def", "3"); ...