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++;
}
}
ファイルに表示されるすべてのシンボルを数える方法がわかりません..誰か助けてくれませんか?