java文件选择器,使用本地文件管理器

java默认的选择器太丑了

如下选择管理器

if(fileChooser.showOpenDialog(null)==JFileChooser.APPROVE_OPTION){
            pathField.setText(fileChooser.getSelectedFile().getPath());//文本框给出路径
            imgname = fileChooser.getSelectedFile().getName();//获取加密文件名
            imgpath = pathField.getText() ;
            imgpath = imgpath.substring(0,imgpath.length()-imgname.length());//获取加密的文件所在的文件夹
        }

增加下面代码
参考链接如下
https://zhidao.baidu.com/question/425294497293157012.html

 if(UIManager.getLookAndFeel().isSupportedLookAndFeel()){//使用系统的文件管理器
            final String platform = UIManager.getSystemLookAndFeelClassName();
// If the current Look & Feel does not match the platform Look & Feel,
// change it so it does.
            if (!UIManager.getLookAndFeel().getName().equals(platform)) {
                try {
                    UIManager.setLookAndFeel(platform);
                } catch (Exception exception) {
                    exception.printStackTrace();
                }
            }
        }

总代码

//选择图片路径事件
    public void cpathaction(ActionEvent arg0){
        JFileChooser fileChooser=new JFileChooser("C:/Users/Administrator/Desktop/");//默认首先搜寻路径,可根据自己的需要进行修改
        if(UIManager.getLookAndFeel().isSupportedLookAndFeel()){//使用系统的文件管理器
            final String platform = UIManager.getSystemLookAndFeelClassName();
// If the current Look & Feel does not match the platform Look & Feel,
// change it so it does.
            if (!UIManager.getLookAndFeel().getName().equals(platform)) {
                try {
                    UIManager.setLookAndFeel(platform);
                } catch (Exception exception) {
                    exception.printStackTrace();
                }
            }
        }
        if(fileChooser.showOpenDialog(null)==JFileChooser.APPROVE_OPTION){
            pathField.setText(fileChooser.getSelectedFile().getPath());//文本框给出路径
            imgname = fileChooser.getSelectedFile().getName();//获取加密文件名
            imgpath = pathField.getText() ;
            imgpath = imgpath.substring(0,imgpath.length()-	imgname.length());//获取加密的文件所在的文件夹
        }
    }
  • 1
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值