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. 자바 2 플랫폼 일반용 6.0 버전 (야생마)를 사용하면 시스템 트레이를 통해 액세스하는 두 개의 클래스를 java.awt 패키지 : systemtray 및 trayicon합니다.
시스템 트레이에 자바
These classes give you the ability to add graphics, popup menus, and floating tip functionality to the system tray. 이러한 클래스를 추가할 수있는 기능을 제공 그래픽, 팝업 메뉴, 그리고 부동 팁 기능을 시스템 트레이합니다. If approved by the JSR 270 Expert Group you can expect to find this feature in the final version of Mustang. 전문가 그룹의 승인을 jsr 경우 270에서이 기능을 찾을 수있습니다를 기대 머스탱의 최종 버전을합니다. Approve it already! 승인 이미!

The java.awt.SystemTray class represents the system tray for a desktop. 시스템 트레이 the java.awt.systemtray 클래스를 나타냅니다 바탕 화면을합니다. You can access the system tray by calling the static SystemTray.getSystemTray() method. 시스템 트레이에 액세스할 수있습니다를 호출하여 정적 systemtray.getsystemtray () 메소드를합니다. Before doing so, however, the application should always check if the system tray is supported using the static SystemTray.isSupported() method. 이렇게하기 전에, 그러나이 응용 프로그램은 항상 시스템 트레이를 지원하는지 확인합니다을 사용하여 정적 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. 시스템 트레이가없는 경우에는이 플랫폼 및 응용 프로그램에서 지원하려고 시도하거나에게 전화 getsystemtray () 이와 같은 경우, 그것이 던지는 java.lang.unsupportedoperationexception합니다.

Read this article for more 이 기사를 읽고 더 많은 details 세부 사항 . 합니다.