Java GUI 桌面应用开发(java开发桌面应用程序)

  前言

  虽然现在已经很少项目会涉及GUI技术,但作为一个合格的java开发工程师,还是得了解才得

  本文记录,idea使用JFormDesigner插件进行Java GUI 桌面应用开发

  GUI Swing

  图形化的用户界面(Graphical User Interface,简称GUI),java提供了一套可以轻松构建GUI的工具

  GUI开发包:
    java.AWT 包: 主要提供字体/布局管理器
    javax.Swing 包:主要提供各种组件(窗口/按钮/文本框),商业开发常用
    java.awt.event 包:事件处理,后台功能的实现

  Swing组件

    相对于AWT而言Swing包中提供了更多的丰富的、快捷的、强大的GUI组件

    大体上包括以下内容:window顶层容器(窗口)、container中间容器(面板)、component基本组件(按钮、标签等)

Java GUI 桌面应用开发(java开发桌面应用程序)

  JFormDesigner

  JFormDesigner,高级Swing GUI设计器,支持MigLayout, JGoodies FormLayout, GroupLayout(自由设计),TableLayout和GridBagLayout,这使得它很容易创建专业外观的表单。

  通俗的讲就是使用这个插件进行拖拉布局,快速创建页面,但是这个插件需要购买许可才能使用

  破解教程:https://www.cnblogs.com/ylkh/p/13858433.html

1、打开注册机JFormDesigner_Keygen.exe,选择idea plug-in,里面的可以随便填2、点击Patch,选择已安装的插件,生成bak文件(插件位置idea安装路径pluginsFormDesigner)3、点击generate生成JFormDesigner_license.txt文件

Java GUI 桌面应用开发(java开发桌面应用程序)

  代码编写

  创建图形页面,插件会自动同步生成java文件

Java GUI 桌面应用开发(java开发桌面应用程序)Java GUI 桌面应用开发(java开发桌面应用程序)Java GUI 桌面应用开发(java开发桌面应用程序)

  进行拖拉布局

Java GUI 桌面应用开发(java开发桌面应用程序)

  关键点:

  1、顶层容器(JFrame)的Name值要为:this

  2、生成的java文件要继承 javax.swing.JFrame

public class TestFrame extends javax.swing.JFrame{ //省略其他代码... }

  3、需要进行单选的RadioButton,要添加同一个Button Group

Java GUI 桌面应用开发(java开发桌面应用程序)

  4、defaultCloseOperation要设置成EXIT,点击X号退出页面时才会退出程序

Java GUI 桌面应用开发(java开发桌面应用程序)

  5、绑定事件,给按钮添加一个actionPerformed即可

Java GUI 桌面应用开发(java开发桌面应用程序)

  6、关闭当前页面:this.dispose(); //退出当前界面

  7、代码弹出对话框:JOptionPane.showMessageDialog(null, "恭喜哦,登录成功!");// Message 对话框

  生成的java文件

/* * Created by JFormDesigner on Tue Dec 28 15:24:42 CST 2021 */package cn.huanzi.qch.view;import java.awt.*;import java.awt.event.*;import javax.swing.*;/** * 测试 */public class TestFrame extends javax.swing.JFrame{ public TestFrame() { initComponents(); setVisible(true);// 显示 setLocationRelativeTo(null);// JFrame 窗口居中显示 } public static void main(String[] args) { java.awt.EventQueue.invokeLater(() -> { new TestFrame(); System.out.println("启动成功!"); }); } private void SubmitActionPerformed(ActionEvent e) { // TODO add your code here System.out.println("---------------------------"); System.out.println("姓名:" userNameTestField.getText()); String sex = ""; if (xyRadioButton.isSelected()) { sex = "男"; } else if (xxRadioButton.isSelected()) { sex = "女"; }else if (yyRadioButton.isSelected()) { sex = "不确定"; } System.out.println("性别:" sex); String hobby = ""; if (singCheckBox.isSelected()) { hobby = "唱、"; } if (skipCheckBox.isSelected()) { hobby = "跳、"; } if (rapCheckBox.isSelected()) { hobby = "rap、"; } System.out.println("爱好:" hobby); System.out.println("自我评价:" selfTextArea.getText()); } private void initComponents() { // JFormDesigner - Component initialization - DO NOT MODIFY //GEN-BEGIN:initComponents label1 = new JLabel(); userNameTestField = new JTextField(); label2 = new JLabel(); label3 = new JLabel(); submit = new JButton(); reset = new JButton(); xxRadioButton = new JRadioButton(); xyRadioButton = new JRadioButton(); yyRadioButton = new JRadioButton(); scrollPane1 = new JScrollPane(); selfTextArea = new JTextArea(); label4 = new JLabel(); label5 = new JLabel(); singCheckBox = new JCheckBox(); skipCheckBox = new JCheckBox(); rapCheckBox = new JCheckBox(); //======== this ======== setBackground(Color.gray); setTitle("Test GUI"); setForeground(SystemColor.windowText); setMinimumSize(new Dimension(300, 200)); setResizable(false); setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); Container contentPane = getContentPane(); contentPane.setLayout(null); //---- label1 ---- label1.setText("u59d3u540duff1a"); contentPane.add(label1); label1.setBounds(34, 55, 65, 30); contentPane.add(userNameTestField); userNameTestField.setBounds(119, 55, 200, userNameTestField.getPreferredSize().height); //---- label2 ---- label2.setText("u6027u522buff1a"); contentPane.add(label2); label2.setBounds(34, 95, 65, 30); //---- label3 ---- label3.setText("u81eau6211u8bc4u4ef7uff1a"); contentPane.add(label3); label3.setBounds(34, 165, 65, 30); //---- submit ---- submit.setText("u63d0u4ea4"); submit.addActionListener(e -> SubmitActionPerformed(e)); contentPane.add(submit); submit.setBounds(new Rectangle(new Point(64, 271), submit.getPreferredSize())); //---- reset ---- reset.setText("u91cdu7f6e"); contentPane.add(reset); reset.setBounds(new Rectangle(new Point(219, 271), reset.getPreferredSize())); //---- xxRadioButton ---- xxRadioButton.setText("u5973"); contentPane.add(xxRadioButton); xxRadioButton.setBounds(new Rectangle(new Point(184, 100), xxRadioButton.getPreferredSize())); //---- xyRadioButton ---- xyRadioButton.setText("u7537"); contentPane.add(xyRadioButton); xyRadioButton.setBounds(new Rectangle(new Point(129, 100), xyRadioButton.getPreferredSize())); //---- yyRadioButton ---- yyRadioButton.setText("u4e0du786eu5b9a"); contentPane.add(yyRadioButton); yyRadioButton.setBounds(new Rectangle(new Point(239, 100), yyRadioButton.getPreferredSize())); //======== scrollPane1 ======== { scrollPane1.setViewportView(selfTextArea); } contentPane.add(scrollPane1); scrollPane1.setBounds(117, 165, 202, 71); //---- label4 ---- label4.setText("u6d4bu8bd5u8868u5355"); label4.setFont(label4.getFont().deriveFont(22f)); contentPane.add(label4); label4.setBounds(124, 0, 100, 45); //---- label5 ---- label5.setText("u7231u597duff1a"); contentPane.add(label5); label5.setBounds(34, 130, 65, 30); //---- singCheckBox ---- singCheckBox.setText("u5531"); contentPane.add(singCheckBox); singCheckBox.setBounds(new Rectangle(new Point(129, 135), singCheckBox.getPreferredSize())); //---- skipCheckBox ---- skipCheckBox.setText("u8df3"); contentPane.add(skipCheckBox); skipCheckBox.setBounds(new Rectangle(new Point(184, 135), skipCheckBox.getPreferredSize())); //---- rapCheckBox ---- rapCheckBox.setText("rap"); contentPane.add(rapCheckBox); rapCheckBox.setBounds(239, 135, 50, rapCheckBox.getPreferredSize().height); { // compute preferred size Dimension preferredSize = new Dimension(); for(int i = 0; i < contentPane.getComponentCount(); i ) { Rectangle bounds = contentPane.getComponent(i).getBounds(); preferredSize.width = Math.max(bounds.x bounds.width, preferredSize.width); preferredSize.height = Math.max(bounds.y bounds.height, preferredSize.height); } Insets insets = contentPane.getInsets(); preferredSize.width = insets.right; preferredSize.height = insets.bottom; contentPane.setMinimumSize(preferredSize); contentPane.setPreferredSize(preferredSize); } setSize(400, 365); setLocationRelativeTo(null); //---- buttonGroup2 ---- ButtonGroup buttonGroup2 = new ButtonGroup(); buttonGroup2.add(xxRadioButton); buttonGroup2.add(xyRadioButton); buttonGroup2.add(yyRadioButton); // JFormDesigner - End of component initialization //GEN-END:initComponents } // JFormDesigner - Variables declaration - DO NOT MODIFY //GEN-BEGIN:variables private JLabel label1; private JTextField userNameTestField; private JLabel label2; private JLabel label3; private JButton submit; private JButton reset; private JRadioButton xxRadioButton; private JRadioButton xyRadioButton; private JRadioButton yyRadioButton; private JScrollPane scrollPane1; private JTextArea selfTextArea; private JLabel label4; private JLabel label5; private JCheckBox singCheckBox; private JCheckBox skipCheckBox; private JCheckBox rapCheckBox; // JFormDesigner - End of variables declaration //GEN-END:variables}

  效果演示

Java GUI 桌面应用开发(java开发桌面应用程序)

  后记

  掌握了基本操作后,下面分享我在大学时期做的单机版五子棋、以及java课程实训作品:图书管理系统

  单机版五子棋

  猛戳:Java GUI 单机版五子棋

Java GUI 桌面应用开发(java开发桌面应用程序)

  图书管理系统

  数据库用mysql,GUI图形化页面实现用户登录后对图书进行CRUD操作

Java GUI 桌面应用开发(java开发桌面应用程序)

  登录页面

Java GUI 桌面应用开发(java开发桌面应用程序)

  图书管理

Java GUI 桌面应用开发(java开发桌面应用程序)Java GUI 桌面应用开发(java开发桌面应用程序)

  图书类别管理

Java GUI 桌面应用开发(java开发桌面应用程序)Java GUI 桌面应用开发(java开发桌面应用程序)

  关于我们

Java GUI 桌面应用开发(java开发桌面应用程序)

版权声明

作者:huanzi-qch

出处:https://www.cnblogs.com/huanzi-qch

若标题中有“转载”字样,则本文版权归原作者所有。若无转载字样,本文版权归作者所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文链接,否则保留追究法律责任的权利.

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

(0)
上一篇 2024年5月19日 下午2:55
下一篇 2024年5月19日 下午3:07

相关推荐

  • 科研项目方面存在的不足

    科研项目方面存在的不足 科研项目是科学家们探索未知领域的重要工具,但同时也存在一些不足,包括以下几点: 1. 缺乏资金:科研项目需要大量的资金来支持设备和材料采购、实验场地租赁、人…

    科研百科 2025年4月14日
    7
  • 上海兽医所阐释新城疫病毒拮抗先天性免疫新机制

      近日,中国农业科学院上海兽医研究所水禽病毒病创新团队发现,新城疫病毒感染宿主细胞过程中,其非结构蛋白V能够通过降解重要的先天性免疫接头分子线粒体抗病毒信号蛋白,抑制宿主先天性免…

    科研百科 2022年5月13日
    265
  • 基因编辑技术创制出高抗性淀粉小麦新种质

      近日,中国农业科学院作物科学研究所利用CRISPR/Cas9基因编辑技术,定点编辑敲除冬小麦品种“郑麦7698”和春小麦品种“Bobwhite”中的 SBEIIa 基因,分别获…

    科研百科 2022年5月13日
    422
  • 企业规范化管理的4个步骤(如何做到企业管理规范化)

    【温馨提示】阅读前,点击右上角“关注”,每天第一时间获取本头条号分享的管理知识与文案。 企业要做强做大,必须走规范化、特色化、精细化的管理之路,而打造一支规范化管理的企业员工团队,…

    科研百科 2022年12月16日
    262
  • 科研人员发现人参膳食纤维新功能

      近日,中国农业科学院特产研究所特种动植物加工科技创新团队发现人参水溶性膳食纤维新功能,相关研究结果发表在《食品化学(Food Chemistry)》上。   据孙印石研究员介绍…

    科研百科 2022年5月12日
    472
  • oa系统项目流程管理

    oa系统项目流程管理 随着数字化时代的到来,项目管理已经成为了企业运营中不可或缺的一部分。oa系统项目流程管理是一种新兴的项目管理方法,通过利用oa系统对项目进行全方位、全过程、全…

    科研百科 2025年6月16日
    0
  • 各科研项目总设计师

    各科研项目总设计师: 在科技日新月异的时代,科研项目总设计师是我们团队中不可或缺的人物。他们是我们项目的掌控者,也是科技创新的引领者。他们负责整个项目的设计、规划和实施,以确保项目…

    科研百科 2025年4月25日
    2
  • 倒水流程有11步!苏州将为会议服务制定标准(会议服务倒水顺序)

    现代快报讯(通讯员 张晗玥 记者 高达)日前,苏州市会议中心申报的《政务会议服务标准化试点》和《酒店会议服务规范》两个项目,分别被江苏省战略性新兴产业和服务业标准化试点项目和苏州市…

    科研百科 2022年12月18日
    243
  • 国际大型科研项目

    国际大型科研项目:探索宇宙深处的奥秘 宇宙是一个巨大的空间,包含了无数的星球和星系。近年来,随着科学技术的不断发展,人类开始探索宇宙深处的奥秘。国际大型科研项目——“旅行者1号”和…

    科研百科 2025年2月8日
    2
  • 「中国AI实验室项目巡礼」中大HCPLab:基于注意力机制学习的人脸幻构

    1新智元专栏 我们希望能为读者朋友们介绍一些国内优秀的人工智能领域的实验室和他们的研究项目,今天为大家带来的是中山大学人机物智能融合实验室(中大HCPLab)和他们的“基于注意力机…

    科研百科 2024年4月1日
    174