public void countSymbols() throws IOException{
String line = null;
int count = 0;
while((line = reader.readLine())!= null){
for(int i=0; i<line.length(); i++){
if(line.charAt(i) == ',' || '&' || '\t' ||'%')
count++;
}
}
我不知道如何计算文件中出现的所有符号。有人愿意帮忙吗?