我试图在我的代码中使用文件选择器,我"Not an enclosing class"
在"int returnVal = fc.showOpenDialog(FileChooserDemo.this);"
. 下面是我的代码。任何猜测来解决它?
browse_button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
int returnVal = fc.showOpenDialog(FileChooserDemo.this);
File file = fc.getSelectedFile();
log.append("Opening: " + file.getAbsolutePath() + "." + "\n");
String ab=file.getAbsolutePath();
System.out.println(ab);
}});
我已经做了actionlistener
in main 方法。