使用Apache Commons Lang包中的 StringUtils类就可以完成这个工作。
int n= StringUtils.countMatches("aaaaabbbbbcccccc","c"); System.out.println("n="+n);
计算结果:
n=6