编程语言
首页 > 编程语言> > Java中的文件选择器

Java中的文件选择器

作者:互联网

我试图在代码中使用文件选择器,在“ int returnVal = fc.showOpenDialog(FileChooserDemo.this);”中收到错误“ Not a encloing class”.下面是我的代码.可以解决吗?

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);

}});

我已经在主要方法中制作了动作监听器.

解决方法:

您的问题是您正在使用静态方法main(…)进行此调用,并尝试在此静态方法内部使用FileChooserDemo.this(对封闭类的引用).嗯,这是行不通的,因为在静态世界中没有这个.解决方案是在非静态代码(例如非静态方法或类的构造函数)中执行此操作.

标签:jfilechooser,actionlistener,swing,jbutton,java
来源: https://codeday.me/bug/20191127/2075482.html