1

テキストを含むファイルを作成しました。

「end」、「so」、「because」などの特定の単語を読みたいのですが、Setこれらのキーワードを保存しMap、すべてのキーワードと繰り返し回数を表示するために使用します。

どうすればいいのか教えていただけますか?

...
openButton.addActionListener(new ActionListener() { 
    public void actionPerformed(ActionEvent e) { 
    JFileChooser fileChooser = new JFileChooser(); 
    int chosenFile = fileChooser.showOpenDialog(null);
    if(chosenFile == JFileChooser.APPROVE_OPTION){ 
        File selectedFile = fileChooser.getSelectedFile(); 
        if ( selectedFile.canRead()){ 
            Set<String> keywordList = new HashSet<String>();
            keywordList.add("and"); 
            keywordList.add("so"); 
            keywordList.add("because”);
...

Mapここからキーワードを細かくするためにどのように使用できるかわかりません。

4

3 に答える 3