Java 2 Platform Standard Edition 6.0 version (Mustang) lets you access the system tray through two classes in the java.awt package: SystemTray and TrayIcon. Java 2 Platform Standard Edition versión 6,0 (Mustang) le permite acceder a la bandeja del sistema a través de dos clases en el paquete java.awt: SystemTray y TrayIcon.
La bandeja del sistema en Java
These classes give you the ability to add graphics, popup menus, and floating tip functionality to the system tray. Estas clases le dan la posibilidad de añadir gráficos, menús pop-up, flotante y la funcionalidad de punta a la bandeja del sistema. If approved by the JSR 270 Expert Group you can expect to find this feature in the final version of Mustang. En caso de ser aprobado por el JSR 270 del Grupo de Expertos que puede esperar a encontrar esta función en la versión final de la Mustang. Approve it already! Aprobar ya!

The java.awt.SystemTray class represents the system tray for a desktop. El java.awt.SystemTray clase representa la bandeja del sistema para un escritorio. You can access the system tray by calling the static SystemTray.getSystemTray() method. Puede acceder a la bandeja de sistema, llamando a la estática SystemTray.getSystemTray (). Before doing so, however, the application should always check if the system tray is supported using the static SystemTray.isSupported() method. Antes de hacerlo, sin embargo, la aplicación siempre debe comprobar si la bandeja del sistema está soportado usando las SystemTray.isSupported (). If the system tray is not present or supported on this platform and the application attempts to call getSystemTray() in such a case, it will throw a java.lang.UnsupportedOperationException. Si la bandeja del sistema no está presente o el apoyo a esta plataforma y la aplicación intentos de llamada getSystemTray () en ese caso, se tira una java.lang.UnsupportedOperationException.

Read this article for more Lee este artículo para más details detalles .