テキストを含むファイルを作成しました。
「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
ここからキーワードを細かくするためにどのように使用できるかわかりません。