我感觉使用map做比较好
[AppleScript] 纯文本查看 复制代码 import java.util.HashMap;
public class Xunzhaocount {
public static void main(String[] args) {
HashMap<Character,Integer> hashMap = new HashMap<>();
String text ="qqqwwwweeeee";
char[] charArray = text.toCharArray();
for (char c : charArray) {
if (hashMap.containsKey(c)) {
hashMap.put(c, hashMap.get(c)+1);
}else{
hashMap.put(c, 1);
}
}
System.out.println(hashMap);
}
}
然后打印输出你可以使用字符串的拼接 |