gpt4 book ai didi

java - JFileChooser 类

转载 作者:行者123 更新时间:2023-12-01 15:32:54 25 4
gpt4 key购买 nike

当我尝试使用此代码时,出现以下错误:

Error: Could not find or load main class jfilechooserexample.JFileChooserExample.

如有任何帮助,我们将不胜感激

这是我在类里面放置的代码。

import java.io.*;
import javax.swing.*;
import java.awt.event.*;
import javax.swing.filechooser.FileFilter;
import javax.swing.filechooser.FileNameExtensionFilter;

public class JFileChooserExample{

public static void getFileName(File f){
System.out.println("File is: "+f.getName());
}
public static void main(String[] args) {
JPanel panel=new JPanel();
panel.setLayout(null);
JButton b=new JButton("Open File");
b.addActionListener(new ActionListener(){
public void actionPerformed(ActionEvent e){
JFileChooser chooser=new JFileChooser();
int ret = chooser.showDialog(null, "Open file");
if (ret == JFileChooser.APPROVE_OPTION) {
File file = chooser.getSelectedFile();
getFileName(file);
}
}
});
b.setBounds(10,10,120,20);
panel.add(b);
JFrame f=new JFrame();
f.add(panel);
f.setSize(400,200);
f.setVisible(true);

}
}

最佳答案

您的类声明与错误消息不匹配。错误消息列出了包名称 jfilechooserexample。但是,您的类不属于您的包。

您错过了发布启动参数。我猜它们包含包名称。

关于java - JFileChooser 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9354055/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com