java Swing 实现将系统最小化到系统托盘

2023-11-20 14:32

本文主要是介绍java Swing 实现将系统最小化到系统托盘,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

  1. 源码:
  2. /*  
  3.  * MainFrame.java  
  4.  *  
  5.  * Created on 2008年9月20日, 上午11:44  
  6.  */   
  7.   
  8. package  com.topking.tray.ui;  
  9.   
  10. import  java.awt.AWTException;  
  11. import  java.awt.Image;  
  12. import  java.awt.MenuItem;  
  13. import  java.awt.PopupMenu;  
  14. import  java.awt.SystemTray;  
  15. import  java.awt.TrayIcon;  
  16. import  java.awt.event.ActionEvent;  
  17. import  java.awt.event.ActionListener;  
  18. import  java.awt.event.MouseEvent;  
  19. import  java.awt.event.MouseListener;  
  20. import  java.awt.event.WindowEvent;  
  21. import  java.awt.event.WindowListener;  
  22.   
  23. import  javax.swing.ImageIcon;  
  24.   
  25. /**  
  26.  *  
  27.  * @author  lzkj  
  28.  */   
  29. public   class  MainFrame  extends  javax.swing.JFrame  implements  ActionListener, WindowListener{  
  30.   
  31.     // Variables declaration - do not modify   
  32.     private  javax.swing.JLabel L_img;  
  33.     private  javax.swing.JLabel L_img2;  
  34.     private  PopupMenu pop;  
  35.     private  MenuItem open,close;  
  36.     private  TrayIcon trayicon;  
  37.     // End of variables declaration   
  38.   
  39.       
  40.     /** Creates new form MainFrame */   
  41.     public  MainFrame() {  
  42.         this .setTitle( "Java实现系统托盘示例" );  
  43.         this .setLocation( 300 , 300 );  
  44.         initComponents();  
  45.     }  
  46.   
  47.     /** This method is called from within the constructor to  
  48.      * initialize the form.  
  49.      * WARNING: Do NOT modify this code. The content of this method is  
  50.      * always regenerated by the Form Editor.  
  51.      */   
  52.     @SuppressWarnings ( "unchecked" )  
  53.     // <editor-fold defaultstate="collapsed" desc="Generated Code">   
  54.     private   void  initComponents() {  
  55.                   
  56. //        L_img = new javax.swing.JLabel(new ImageIcon((MainFrame.class).getResource("com/topking/tray/images/netbean1.png")));           
  57. //        L_img2 = new javax.swing.JLabel(new ImageIcon((MainFrame.class).getResource("com/topking/tray/images/netbean2.png")));   
  58.         L_img = new  javax.swing.JLabel( new  ImageIcon( this .getClass().getClassLoader().getResource( "com/topking/tray/images/netbean1.png" )));          
  59.         L_img2 = new  javax.swing.JLabel( new  ImageIcon( this .getClass().getClassLoader().getResource( "com/topking/tray/images/netbean2.png" )));    
  60.   
  61.   
  62.         pop = new  PopupMenu();  
  63.         open = new  MenuItem( "打开" );  
  64.         open.addActionListener(this );  
  65.           
  66.         close = new  MenuItem( "关闭" );  
  67.         close.addActionListener(this );  
  68.           
  69.         pop.add(open);  
  70.         pop.add(close);         
  71.         
  72.         if (SystemTray.isSupported()){  
  73.             SystemTray tray = SystemTray.getSystemTray();  
  74.             Image icon = this .getToolkit().getImage( this .getClass().getClassLoader().getResource( "com/topking/tray/images/user_edit.png" ));  
  75.             trayicon = new  TrayIcon(icon, "系统托盘示例(java)" ,pop);  
  76.             trayicon.addMouseListener(new  MouseListener(){  
  77.   
  78.                 public   void  mouseClicked(MouseEvent e) {  
  79.                     // TODO Auto-generated method stub   
  80.                     if (e.getClickCount()== 2 ){  
  81.                         openFrame();  
  82.                     }  
  83.                 }  
  84.   
  85.                 public   void  mouseEntered(MouseEvent e) {  
  86.                     // TODO Auto-generated method stub   
  87.                       
  88.                 }  
  89.   
  90.                 public   void  mouseExited(MouseEvent e) {  
  91.                     // TODO Auto-generated method stub   
  92.                       
  93.                 }  
  94.   
  95.                 public   void  mousePressed(MouseEvent e) {  
  96.                     // TODO Auto-generated method stub   
  97.                       
  98.                 }  
  99.   
  100.                 public   void  mouseReleased(MouseEvent e) {  
  101.                     // TODO Auto-generated method stub   
  102.                       
  103.                 }  
  104.                   
  105.             });  
  106.               
  107.             try  {  
  108.                 tray.add(trayicon);  
  109.             } catch  (AWTException e) {  
  110.                 // TODO Auto-generated catch block   
  111.                 e.printStackTrace();  
  112.             }  
  113.         }  
  114.   
  115.         javax.swing.GroupLayout layout = new  javax.swing.GroupLayout(getContentPane());  
  116.         getContentPane().setLayout(layout);  
  117.         layout.setHorizontalGroup(  
  118.             layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)  
  119.             .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()  
  120.                 .addContainerGap()  
  121.                 .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.TRAILING)  
  122.                     .addComponent(L_img2, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, 380 , Short.MAX_VALUE)  
  123.                     .addComponent(L_img, javax.swing.GroupLayout.Alignment.LEADING, javax.swing.GroupLayout.DEFAULT_SIZE, 380 , Short.MAX_VALUE))  
  124.                 .addContainerGap())  
  125.         );  
  126.         layout.setVerticalGroup(  
  127.             layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)  
  128.             .addGroup(layout.createSequentialGroup()  
  129.                 .addContainerGap()  
  130.                 .addComponent(L_img)  
  131.                 .addGap(292929 )  
  132.                 .addComponent(L_img2, javax.swing.GroupLayout.PREFERRED_SIZE, 222 , javax.swing.GroupLayout.PREFERRED_SIZE)  
  133.                 .addContainerGap(39 , Short.MAX_VALUE))  
  134.         );  
  135.   
  136.         pack();  
  137.     }// </editor-fold>   
  138.   
  139.     /**  
  140.     * @param args the command line arguments  
  141.     */   
  142.     public   static   void  main(String args[]) {  
  143.         java.awt.EventQueue.invokeLater(new  Runnable() {  
  144.             public   void  run() {  
  145.                 new  MainFrame().setVisible( true );  
  146.             }  
  147.         });  
  148.     }  
  149.   
  150.     public   void  actionPerformed(ActionEvent e) {  
  151.         // TODO Auto-generated method stub   
  152.         if (e.getSource()==open){  
  153.             openFrame();  
  154.         }  
  155.         if (e.getSource()==close){  
  156.             System.exit(-1 );  
  157.         }  
  158.     }  
  159.   
  160.     public   void  openFrame(){  
  161.         this .setVisible( true );  
  162.         this .setAlwaysOnTop( true );  
  163.     }  
  164.     public   void  windowActivated(WindowEvent arg0) {  
  165.         // TODO Auto-generated method stub   
  166.           
  167.     }  
  168.   
  169.     public   void  windowClosed(WindowEvent arg0) {  
  170.         // TODO Auto-generated method stub   
  171.         this .setVisible( false );  
  172.         this .dispose();  
  173.     }  
  174.   
  175.     public   void  windowClosing(WindowEvent arg0) {  
  176.         // TODO Auto-generated method stub   
  177.           
  178.     }  
  179.   
  180.     public   void  windowDeactivated(WindowEvent arg0) {  
  181.         // TODO Auto-generated method stub   
  182.           
  183.     }  
  184.   
  185.     public   void  windowDeiconified(WindowEvent arg0) {  
  186.         // TODO Auto-generated method stub   
  187.           
  188.     }  
  189.   
  190.     //窗口最小化   
  191.     public   void  windowIconified(WindowEvent arg0) {  
  192.         // TODO Auto-generated method stub         
  193.         this .dispose();  
  194.     }  
  195.   
  196.     public   void  windowOpened(WindowEvent arg0) {  
  197.         // TODO Auto-generated method stub   
  198.           
  199.     }  
  200.   
  201.       

这篇关于java Swing 实现将系统最小化到系统托盘的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/395310

相关文章

SpringBoot3实现Gzip压缩优化的技术指南

《SpringBoot3实现Gzip压缩优化的技术指南》随着Web应用的用户量和数据量增加,网络带宽和页面加载速度逐渐成为瓶颈,为了减少数据传输量,提高用户体验,我们可以使用Gzip压缩HTTP响应,... 目录1、简述2、配置2.1 添加依赖2.2 配置 Gzip 压缩3、服务端应用4、前端应用4.1 N

Java编译生成多个.class文件的原理和作用

《Java编译生成多个.class文件的原理和作用》作为一名经验丰富的开发者,在Java项目中执行编译后,可能会发现一个.java源文件有时会产生多个.class文件,从技术实现层面详细剖析这一现象... 目录一、内部类机制与.class文件生成成员内部类(常规内部类)局部内部类(方法内部类)匿名内部类二、

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

Python FastAPI+Celery+RabbitMQ实现分布式图片水印处理系统

《PythonFastAPI+Celery+RabbitMQ实现分布式图片水印处理系统》这篇文章主要为大家详细介绍了PythonFastAPI如何结合Celery以及RabbitMQ实现简单的分布式... 实现思路FastAPI 服务器Celery 任务队列RabbitMQ 作为消息代理定时任务处理完整

Springboot @Autowired和@Resource的区别解析

《Springboot@Autowired和@Resource的区别解析》@Resource是JDK提供的注解,只是Spring在实现上提供了这个注解的功能支持,本文给大家介绍Springboot@... 目录【一】定义【1】@Autowired【2】@Resource【二】区别【1】包含的属性不同【2】@

springboot循环依赖问题案例代码及解决办法

《springboot循环依赖问题案例代码及解决办法》在SpringBoot中,如果两个或多个Bean之间存在循环依赖(即BeanA依赖BeanB,而BeanB又依赖BeanA),会导致Spring的... 目录1. 什么是循环依赖?2. 循环依赖的场景案例3. 解决循环依赖的常见方法方法 1:使用 @La

Java枚举类实现Key-Value映射的多种实现方式

《Java枚举类实现Key-Value映射的多种实现方式》在Java开发中,枚举(Enum)是一种特殊的类,本文将详细介绍Java枚举类实现key-value映射的多种方式,有需要的小伙伴可以根据需要... 目录前言一、基础实现方式1.1 为枚举添加属性和构造方法二、http://www.cppcns.co

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

Elasticsearch 在 Java 中的使用教程

《Elasticsearch在Java中的使用教程》Elasticsearch是一个分布式搜索和分析引擎,基于ApacheLucene构建,能够实现实时数据的存储、搜索、和分析,它广泛应用于全文... 目录1. Elasticsearch 简介2. 环境准备2.1 安装 Elasticsearch2.2 J

Linux系统中卸载与安装JDK的详细教程

《Linux系统中卸载与安装JDK的详细教程》本文详细介绍了如何在Linux系统中通过Xshell和Xftp工具连接与传输文件,然后进行JDK的安装与卸载,安装步骤包括连接Linux、传输JDK安装包... 目录1、卸载1.1 linux删除自带的JDK1.2 Linux上卸载自己安装的JDK2、安装2.1