import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.JButton; import javax.swing.JTextField; import javax.swing.JLabel; import java.awt.; import javax.swing.JFileChooser; import java.awt.event.;//导入ActionListener接口所在的包event public class demo extends JFrame{ public static void main(String[] args) { JFrame frame=new JFrame();//创建一个窗口 frame.setTitle("开始你的复制吧!");//设置窗口标题 frame.setBounds(400,400,400,300);//设置窗口的位置和大小 frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);// 设置窗口关闭时的操作 frame.setBackground(Color.CYAN);//设置Frame的背景色 frame.setLayout(null);//不适用布局管理器,设置为NULL JTextField textField1=new JTextField(30); JTextField textField2=new JTextField(30); JLabel label1=new JLabel("输入你要拷贝的文件:"); JLabel label2=new JLabel("输入拷到哪里去:"); textField1.setColumns(30); textField2.setColumns(30); label1.setBounds(10,10,120,20); label2.setBounds(10,40,120,20); textField1.setBounds(140,10,200,20); textField2.setBounds(140,40,200,20); frame.add(label1); frame.add(textField1); frame.add(label2); frame.add(textField2); //frame.setSize(400,100); //frame.setLocation(300,200); frame.setVisible(true); JButton button1 =new JButton("copy"); button1.setBounds(270,70,100,20); button1.setBackground(Color.CYAN);//做作的天蓝色 frame.add(button1); JButton button2=new JButton("..."); button2.setBounds(350,12,20,16); button2.addActionListener(new button2()); frame.add(button2); JButton button3=new JButton("..."); button3.setBounds(350,42,20,16); button3.addActionListener(new button3()); frame.add(button3); button2.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { JFileChooser fileChooser=new JFileChooser("d://"); fileChooser.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);//可以选择文件和文件夹 if (fileChooser.showOpenDialog(null)==JFileChooser.APPROVE_OPTION){ String filePath=fileChooser.getSelectedFile().getAbsolutePath(); textField1.setText(filePath); } } }); } }为什么button3红色波浪线,怎么形成点击button3也弹出文件选择的效果
时间: 2024-02-12 19:08:36 浏览: 85
javax.swing编的用户界面
button3红色波浪线的原因是因为没有为其添加 ActionListener 监听器。您需要添加与 button2 相同的代码来为 button3 添加 ActionListener 监听器,以便在点击 button3 时也弹出文件选择对话框。具体代码如下:
```
button3.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
JFileChooser fileChooser = new JFileChooser("d://");
fileChooser.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
if (fileChooser.showOpenDialog(null) == JFileChooser.APPROVE_OPTION) {
String filePath = fileChooser.getSelectedFile().getAbsolutePath();
textField2.setText(filePath);
}
}
});
```
这会在按钮被点击时弹出文件选择对话框,并将所选文件的路径显示在 textField2 中。
阅读全文