catch小说内容-从gui到爬虫(3)
作者:互联网
day4-完善窗体
1.文件选择窗口-Jfilechooser
1) 步骤
-
新建文件选择窗口,并输入默认路径:FileChooser chooser= new JFileChooser(text1.getText());
-
设置显示文件or文件夹:chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
- FILES_AND_DIRECTORIES 指示显示文件和目录。
- FILES_ONLY 指示仅显示文件。
- DIRECTORIES_ONLY 指示仅显示目录。
-
显示保存文件夹并返回点击的按键:int a = chooser.showSaveDialog(button1);
-
参考:https://www.cnblogs.com/tanrong/p/6826144.html
2) 代码
button1.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
JFileChooser chooser= new JFileChooser(text1.getText());
chooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
int a = chooser.showSaveDialog(button1);
if (a == JFileChooser.APPROVE_OPTION) {
// 如果点击了保存按钮,赋值
text1.setText(chooser.getSelectedFile().getAbsolutePath());
}
}
});
2. 提示窗口-showMessageDialog
- JOptionPane.showMessageDialog(null,“填入网址并选择文件地址”);
- 参考:https://www.cnblogs.com/ITyunlin/p/10545108.html
标签:button1,显示文件,gui,chooser,爬虫,ONLY,catch,DIRECTORIES,JFileChooser 来源: https://blog.csdn.net/qq_41940001/article/details/118755339