Springboot整合Swing制作简单GUI客户端项目记录

业务的要求千奇百怪,今天要写个GUI客户端,JAVA是无所不能的

Swing 和 JavaFx

以前学java的时候,用过一点Swing,而JavaFx没有接触过,所以没选。

若两者都没用过,强烈建议使用JavaFx,Swing已经停止更新维护,样式风格像上古的windows 98,JavaFx是08年Oracle推出的新项目,界面趋势基本是Web UI了,是一个新时代。

我使用了美化ui来规避Swing极其丑陋的外观

Springboot项目整合Swing

新建一个Springboot web项目,用来支持后续数据库操作,暴露接口等服务。

新建样式类并继承JFrame

public class SwingArea extends JFrame {
    private static SwingArea instance = null;
    private JProgressBar progressBar;
    private SwingArea() {
    }
    public static SwingArea getInstance() {
        if (null == instance) {
            synchronized (SwingArea.class) {
                if (null == instance) {
                    instance = new SwingArea();
                }
            }
        }
        return instance;
    }
    public void initUI() {
    }

springboot启动类中启动GUI

public AdcDaApplication() {
      SwingArea.getInstance().initUI();
  }
public static void main(String[] args) {
    ApplicationContext ctx = new SpringApplicationBuilder(AdcDaApplication.class)
            .headless(false).run(args);
}

此时启动项目,就会执行initUI()方法来GUI窗口。下面我们将编写具体样式

Swing 使用 beautyeye_lnf.jar 美化

Swing官方样式极丑无比,为了复合目前主流审美,所以使用了美化插件: beautyeye_lnf美化插件

  1. 下载插件jar到项目目录

  2. maven引入本地beautyeye_lnf.jar

<dependency>
  <groupId>beautyeye_lnf</groupId>
  <artifactId>beautyeye_lnf</artifactId>
  <version>3.7</version>
  <scope>system</scope>
  <systemPath>${project.basedir}/lib/beautyeye_lnf.jar</systemPath>
</dependency>
  1. 配置mavne打包时包含本地jar
 <plugin>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
  <configuration>
    <includeSystemScope>true</includeSystemScope>
  </configuration>
</plugin>
  1. 启动类中是样式生效

具体样式,可以翻阅官方文档

 public static void main(String[] args) {
    try {
        org.jb2011.lnf.beautyeye.BeautyEyeLNFHelper.launchBeautyEyeLNF();
        BeautyEyeLNFHelper.frameBorderStyle = BeautyEyeLNFHelper.FrameBorderStyle.translucencyAppleLike;
        UIManager.put("RootPane.setupButtonVisible", false);
    } catch(Exception e) {
        //TODO exception
    }
    ApplicationContext ctx = new SpringApplicationBuilder(AdcDaApplication.class)
            .headless(false).run(args);
}

官方美化示例:
[站外图片上传中...(image-99d016-1591260093260)]

具体样式及按钮核心配置在 initUI()中

JFrame窗口配置

this.setTitle("商用车CODE数据处理程序");
this.setResizable(false);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setBounds(100, 100, 700, 540);
  • setTitle 窗口顶端显示标题
  • setResizable 设置窗口大小不可调整
  • setDefaultCloseOperation 设置为关闭窗口同事关闭项目
  • setBounds 设置窗口位置大小 (x,y,w,h)

JPanel面板设置

JPanel panel = new JPanel();
panel.setLayout(null);
this.setContentPane(panel);

setLayout 清空默认浮动样式,来使后面定位数据生效

启动图


load

选择文件按钮设置

JButton openBtn = new JButton("选择文件");
openBtn.addActionListener(e -> file.set(showFileOpenDialog(this, fileFild)));
openBtn.setBounds(160,100,100,30);
openBtn.setUI(new BEButtonUI().setNormalColor(BEButtonUI.NormalColor.green));
openBtn.setFont(new Font("宋体", Font.BOLD,15));
openBtn.setForeground(Color.white);//字体颜色
panel.add(openBtn);
  • new JButton("选择文件") 按钮显示文本
  • addActionListener 点击事件执行文件选择
  • setUI 绿色背景
  • setFont 字体较粗
  • setForeground 字体颜色

swing文件选择

private JFileChooser showFileOpenDialog(Component parent, JLabel textField) {

    if (progressBar.getValue() != 0 && progressBar.getValue() != 100) {
        JOptionPane.showMessageDialog(null, "计算过程中,不可更改文件!╮(╯▽╰)╭", "警告!", JOptionPane.WARNING_MESSAGE);
        return null;
    }
    JFileChooser jFileChooser = new JFileChooser();
    jFileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY); //只能选择文件
    jFileChooser.setMultiSelectionEnabled(false); //只能选择一个文字
    // 设置默认使用的文件过滤器
    jFileChooser.setFileFilter(new FileNameExtensionFilter("excel(*.xlsx, *.xls)", "xls", "xlsx"));
    // 打开文件选择框(线程将被阻塞, 直到选择框被关闭)
    int result = jFileChooser.showOpenDialog(parent);
    if (result == JFileChooser.APPROVE_OPTION) {
        // 如果点击了"确定", 则获取选择的文件路径
        File file = jFileChooser.getSelectedFile();
        // 如果允许选择多个文件, 则通过下面方法获取选择的所有文件
        // File[] files = fileChooser.getSelectedFiles();
        textField.setText("");
        textField.setText(file.getName() + "\n\n");
    }
    //进度条归零
    progressBar.setValue(0);
    return jFileChooser;
}

选择文件
[站外图片上传中...(image-9b58e2-1591260093260)]

swing提醒弹窗

当异常操作时,系统应弹窗阻止操作

if (progressBar.getValue() != 0 && progressBar.getValue() != 100) {
    JOptionPane.showMessageDialog(null, "计算过程中,不可更改文件!╮(╯▽╰)╭", "警告!", JOptionPane.WARNING_MESSAGE);
    return null;
}

错误提示


error1

error2

点击开始执行数据处理

选择文件路径后,对文件进行处理,并显示处理百分百

按钮同上,执行操作代码为:

private void action(JFileChooser fileChooser) {
    if (null == fileChooser || null == fileChooser.getSelectedFile()) {
        JOptionPane.showMessageDialog(null, "请先选择要处理的文件!╮(╯▽╰)╭", "警告!",JOptionPane.WARNING_MESSAGE);
        return;
    }
    System.out.println("执行" + fileChooser.getSelectedFile().getAbsolutePath());
    progressBar(progressBar);

}

progressBar进度模拟程序

给窗口添加进度条:

private JProgressBar progressBar;

progressBar = new JProgressBar();
progressBar.setBounds(80,300,500,30);
progressBar.setValue(0);
progressBar.setStringPainted(true);

panel.add(progressBar);

模拟百分百:

 /**
  * 进度条模拟程序
  * @param progressBar
  */
private void progressBar(JProgressBar progressBar) {
    new Thread(() -> {
        for (int i = 0; i <= 100; i++) {
            try {
                Thread.sleep(100);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
            progressBar.setValue(i);
        }
    }).start();
}

处理完成


finish

完整程序代码

/**
 * Created by Youdmeng on 2020/6/4 0004.
 */
public class SwingArea extends JFrame {

    private static SwingArea instance = null;
    private JProgressBar progressBar;
    private SwingArea() {
    }
    public static SwingArea getInstance() {
        if (null == instance) {
            synchronized (SwingArea.class) {
                if (null == instance) {
                    instance = new SwingArea();
                }
            }
        }
        return instance;
    }
    public void initUI() {
        this.setTitle("商用车CODE数据处理程序");
        this.setResizable(false);
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        this.setBounds(100, 100, 700, 540);
        JPanel panel = new JPanel();
        panel.setLayout(null);
        this.setContentPane(panel);
        //文本区域
        JLabel fileFild = new JLabel("无");

        AtomicReference<JFileChooser> file = new AtomicReference<>(new JFileChooser());

        JButton openBtn = new JButton("选择文件");
        openBtn.addActionListener(e -> file.set(showFileOpenDialog(this, fileFild)));
        openBtn.setBounds(160,100,100,30);
        openBtn.setUI(new BEButtonUI().setNormalColor(BEButtonUI.NormalColor.green));
        openBtn.setFont(new Font("宋体", Font.BOLD,15));
        openBtn.setForeground(Color.white);//字体颜色
        panel.add(openBtn);

        JButton action = new JButton("执行计算");
        action.setBounds(370,100,100,30);
        action.addActionListener(e -> action(file.get()));
        action.setUI(new BEButtonUI().setNormalColor(BEButtonUI.NormalColor.green));
        action.setFont(new Font("宋体", Font.BOLD,15));
        action.setForeground(Color.white);
        panel.add(action);
        panel.add(fileFild);

        JLabel fileFildTitle = new JLabel("已选文件:");
        fileFildTitle.setBounds(130, 150, 150, 30);
        panel.add(fileFildTitle);
        fileFild.setBounds(200,150,500,30);
        progressBar = new JProgressBar();
        progressBar.setBounds(80,300,500,30);
        progressBar.setValue(0);
        progressBar.setStringPainted(true);

        panel.add(progressBar);
        this.setVisible(true);

        this.setVisible(true);

    }

    /**
     * 进度条模拟程序
     * @param progressBar
     */
    private void progressBar(JProgressBar progressBar) {
        new Thread(() -> {
            for (int i = 0; i <= 100; i++) {
                try {
                    Thread.sleep(100);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
                progressBar.setValue(i);
            }
        }).start();
    }

    private void action(JFileChooser fileChooser) {
        if (null == fileChooser || null == fileChooser.getSelectedFile()) {
            JOptionPane.showMessageDialog(null, "请先选择要处理的文件!╮(╯▽╰)╭", "警告!",JOptionPane.WARNING_MESSAGE);
            return;
        }
        System.out.println("执行" + fileChooser.getSelectedFile().getAbsolutePath());
        progressBar(progressBar);

    }

    /*
     * 打开文件
     */
    private JFileChooser showFileOpenDialog(Component parent, JLabel textField) {

        if (progressBar.getValue() != 0 && progressBar.getValue() != 100) {
            JOptionPane.showMessageDialog(null, "计算过程中,不可更改文件!╮(╯▽╰)╭", "警告!", JOptionPane.WARNING_MESSAGE);
            return null;
        }

        JFileChooser jFileChooser = new JFileChooser();
        jFileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
        jFileChooser.setMultiSelectionEnabled(false);
        // 设置默认使用的文件过滤器
        jFileChooser.setFileFilter(new FileNameExtensionFilter("excel(*.xlsx, *.xls)", "xls", "xlsx"));
        // 打开文件选择框(线程将被阻塞, 直到选择框被关闭)
        int result = jFileChooser.showOpenDialog(parent);

        if (result == JFileChooser.APPROVE_OPTION) {
            // 如果点击了"确定", 则获取选择的文件路径
            File file = jFileChooser.getSelectedFile();

            // 如果允许选择多个文件, 则通过下面方法获取选择的所有文件
            // File[] files = fileChooser.getSelectedFiles();
            textField.setText("");
            textField.setText(file.getName() + "\n\n");
        }
        //进度条归零
        progressBar.setValue(0);
        return jFileChooser;
    }
}

收工





更多好玩好看的内容,欢迎到我的博客交流,共同进步        WaterMin


©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,921评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,635评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,393评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,836评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,833评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,685评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,043评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,694评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,671评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,670评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,779评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,424评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,027评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,984评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,214评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,108评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,517评论 2 343

推荐阅读更多精彩内容