web-dev-qa-db-fra.com

Comment faire une notification Windows en Java

Dans Windows 10, une notification s'ouvre en bas à droite de l'écran et je les trouve très utiles.

Est-il possible de créer des notifications Windows en Java? Voici à quoi ils ressemblent:

 sample of windows notification desired

18
Bill Nye

Je peux réussir à produire ce résultat en utilisant cet exemple de code très simple:

 screenshot

import Java.awt.*;
import Java.awt.TrayIcon.MessageType;
import Java.net.MalformedURLException;

public class TrayIconDemo {

    public static void main(String[] args) throws AWTException, MalformedURLException {
        if (SystemTray.isSupported()) {
            TrayIconDemo td = new TrayIconDemo();
            td.displayTray();
        } else {
            System.err.println("System tray not supported!");
        }
    }

    public void displayTray() throws AWTException, MalformedURLException {
        //Obtain only one instance of the SystemTray object
        SystemTray tray = SystemTray.getSystemTray();

        //If the icon is a file
        Image image = Toolkit.getDefaultToolkit().createImage("icon.png");
        //Alternative (if the icon is on the classpath):
        //Image image = Toolkit.getDefaultToolkit().createImage(getClass().getResource("icon.png"));

        TrayIcon trayIcon = new TrayIcon(image, "Tray Demo");
        //Let the system resize the image if needed
        trayIcon.setImageAutoSize(true);
        //Set tooltip text for the tray icon
        trayIcon.setToolTip("System tray icon demo");
        tray.add(trayIcon);

        trayIcon.displayMessage("Hello, World", "notification demo", MessageType.INFO);
    }
}
40
RAnders00

Ceci peut être réalisé avec les classes SystemTray et TrayIcon . De plus, s'il s'agit d'une nouvelle API pour vous, vous pouvez consulter le didacticiel dédié " Comment utiliser la barre d'état système ".

3
Lolo

La réponse correcte fonctionne pour moi dans jdk 1.8 en utilisant Toolkit.getDefaultToolkit () Au lieu de Toolkit.getToolkit ()

0
user2608645