我创建了一个包含文本的文件。
我想读取特定的单词,如“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
fine 关键字。