0

テキスト ファイル内のすべての単語をカウントするプログラムを作成しようとしています。パターンに一致する任意の単語を TreeMap に入れます。

私が取得したテキストファイルargs0

たとえば、テキスト ファイルには次のテキストが含まれています。The Project Gutenberg EBook of The Complete Works of William Shakespeare

TreeMap がすでに単語を持っているかどうかをチェックする条件は、 wordの 2 回目の出現を返しますが、 falsewordの 2 回目の出現を返します。Thetrueof

理由がわかりません...
これは私のコードです:

public class WordCount
{
    public static void main(String[] args)
    {
        // Charset charset = Charset.forName("UTF-8");
        // Locale locale = new Locale("en", "US");

        Path p0 = Paths.get(args[0]);
        Path p1 = Paths.get(args[1]);
        Path p2 = Paths.get(args[2]);

        Pattern pattern1 = Pattern.compile("[a-zA-Z]");
        Matcher matcher;
        Pattern pattern2 = Pattern.compile("'.");

        Map<String, Integer> alphabetical = new TreeMap<String, Integer>();

        try (BufferedReader reader = Files.newBufferedReader(p0))
        {
            String line = null;

            while ((line = reader.readLine()) != null)
            {
                // System.out.println(line);
                for (String word : line.split("\\s"))
                {
                    boolean found = false;

                    matcher = pattern1.matcher(word);
                    while (matcher.find())
                    {
                        found = true;
                    }
                    if (found)
                    {
                        boolean check = alphabetical.containsKey(word.toLowerCase());
                        if (!alphabetical.containsKey(word.toLowerCase()))
                            alphabetical.put(word.toLowerCase(), 1);
                        else
                            alphabetical.put(word.toLowerCase(), alphabetical.get(word.toLowerCase()).intValue() + 1);
                    }
                    else
                    {
                        matcher = pattern2.matcher(word);
                        while (matcher.find())
                        {
                            found = true;
                        }
                        if (found)
                        {
                            if (!alphabetical.containsKey(word.substring(1, word.length())))
                                alphabetical.put(word.substring(1, word.length()).toLowerCase(), 1);
                            else
                                alphabetical.put(word.substring(1, word.length()).toLowerCase(), alphabetical.get(word).intValue() + 1);
                        }
                    }
                }
            }
}
4

1 に答える 1

0

私はあなたのコードをテストしました、それは大丈夫です。ファイルのエンコーディングを確認する必要があると思います。

確かに「UTF-8」です。「UTF-8 BOMなし」で入れればOK!

編集:エンコーディングを変更できない場合は、手動で変更できます。このリンクを参照してください: http://www.rgagnon.com/javadetails/java-handle-utf8-file-with-bom.html

よろしく

于 2017-06-22T14:24:42.607 に答える