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:
Je peux réussir à produire ce résultat en utilisant cet exemple de code très simple:
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);
}
}
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 ".
La réponse correcte fonctionne pour moi dans jdk 1.8 en utilisant Toolkit.getDefaultToolkit () Au lieu de Toolkit.getToolkit ()