-1
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++;
        }
    }

ファイルに表示されるすべてのシンボルを数える方法がわかりません..誰か助けてくれませんか?

4

1 に答える 1

0

あなたは自分の状態を書き換えることができます

if(line.charAt(i) == ',' || '&' || '\t' ||'%') 

の中へ

if(",&\t%".indexOf(line.charAt(i)) != -1)
于 2013-05-31T07:43:46.730 に答える