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

           }
       }
       });

catch小说内容-从gui到爬虫(3)

2. 提示窗口-showMessageDialog

  • JOptionPane.showMessageDialog(null,“填入网址并选择文件地址”);
  • 参考:https://www.cnblogs.com/ITyunlin/p/10545108.html
上一篇:考研英语长难句(刘晓燕)笔记 第六课 唱着歌去考研——英语的特殊结构


下一篇:移动端适配文件(引入scss)