这是我的一段代码
- public class Test10 {
- public static void main(String[] args) throws Exception{
- Map map=new HashMap();
- map.put("0", "零");
- map.put("1", "壹");
- map.put("2", "貳");
- map.put("3", "叁");
- map.put("4", "肆");
- map.put("5", "伍");
- map.put("6", "陸");
- map.put("7", "零");
- map.put("8", "零");
- map.put("9", "零");
-
-
- String str="11000201010";
- for(int i=0;i<str.length();i++)
- {
- int in=str.charAt(i)-'0';
- System.out.print(map.get("in"));
- }
- }
- }
复制代码
为什么运行结果都是null呢?输出的键值key正确 |
|