使用Map判断一个字符串中单个字符出现的次数

String str="heqoikjzxdlawskjhelgeq";

Map map=new HashMap();



for(int i=0;i entry:map.entrySet()){

    System.out.println(entry.getKey() + ":"+ entry.getValue());

     }

 

你可能感兴趣的:(使用Map判断一个字符串中单个字符出现的次数)