我想计算输入网址中的所有字母。我不想区分大写或小写字母。a的总量将存储为total[0]中的整数,b的总量为total[1]等。
知道如何使用 InputStream 来实现这一点吗?
public static int[] letterFrequency(String url) throws IOException {
InputStream inn= new BufferedInputStream((new URL(url)).openStream());
char[] c= {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'æ', 'ø', 'å'};
int[] total= new int[29];
for(int i= 0; i< c.length; i++) {
int counter= 0;
while(inn.available()!= 0) {
if(inn.read()== c[i])
counter++;
}
total[i]= counter;
}
return total;
}
编辑:
感谢所有的回答者!你很棒!!;)