Map<Character,Integer> map = new HashMap<>();
String string = "hghaghabdbjdadng";
for(int index=0; index<string.length(); index++)
{
if(map.containsKey(string.charAt(index)))
{
map.put(string.charAt(index), map.get(string.charAt(index))+1);
}
else
map.put(string.charAt(index), 1);
}
Set<Character> set = map.keySet();
for(char ch : set)
{
System.out.println(ch+"___"+map.get(ch));
}
so ... |