Java MessageDialog / Messagebox

Posted: Januar 2nd, 2009 | Filed under: Programmieren | Tags: , , , , , , , , | 17 Comments »

Wenn man Grafische Benutzer Oberflächen kurz GUIs in Java realisieren braucht man oft sogenannte MessageBoxen, Popupfenster oder um in der Java Sprache zu bleiben MessageDialoge. Diese können durch eine einfache Zeile umgesetzt werden.  Der MessageDialog kann in 5 verschiedenen Arten mit Hilfe der Klasse JOptionPane dargestellt werden.

  • ohne Icon (JOptionPane.PLAIN_MESSAGE)
  • mit Ausrufezeichen (JOptionPane.CANCEL_OPTION)
  • mit Fragezeichen (JOptionPane.QUESTION_MESSAGE)
  • mit Warnkreuz (JOptionPane.ERROR_MESSAGE)
  • mit Infozeichen (JOptionPane.INFORMATION_MESSAGE)
import javax.swing.JOptionPane;

public class MessageDialog {
     public static void main(String[] args) {
          JOptionPane.showMessageDialog(null,"Kein Icon","Titel", JOptionPane.PLAIN_MESSAGE);
          JOptionPane.showMessageDialog(null,"Infozeichen","Titel", JOptionPane.INFORMATION_MESSAGE);
          JOptionPane.showMessageDialog(null,"Fragezeichen","Titel", JOptionPane.QUESTION_MESSAGE);
          JOptionPane.showMessageDialog(null,"Ausrufezeichen","Titel", JOptionPane.CANCEL_OPTION);
          JOptionPane.showMessageDialog(null,"Kreiz","Titel", JOptionPane.ERROR_MESSAGE);
     }
}
MessageDialog - Ohne Icon

MessageDialog - Ohne Icon

MessageDialog - mit Ausrufezeichen

MessageDialog - mit Ausrufezeichen

MessageDialog - mit Fragezeichen

MessageDialog - mit Fragezeichen

MessageDialog - mit Warnkreuz

MessageDialog - mit Warnkreuz

Hier könnt ihr den Quellcode herunterladen.


17 Comments on “Java MessageDialog / Messagebox”

  1. 1 Josef said at 18:34 on Mai 31st, 2010:

    sadngsb

  2. 2 fgbhfgh said at 10:34 on März 14th, 2014:

    fghfsdghg

  3. 3 Dings said at 10:26 on April 6th, 2014:

    Vielen Dank! 🙂

  4. 4 hans wurst said at 17:00 on April 13th, 2014:

    YOLO

  5. 5 Oskar said at 08:24 on Oktober 17th, 2014:

    Klasse und einfach erklärt.
    Ideal für Unterricht.
    Dankeschön 😀

  6. 6 NoMail said at 15:16 on März 24th, 2019:

    A Test with mail -> nomail@nomail.de

  7. 7 Wendi said at 17:36 on Mai 8th, 2019:

    Wonderful! Splendid! Da hät wökli seh gholfä…

  8. 8 Frank Roth said at 09:02 on Oktober 8th, 2019:

    Super Beitrag! Weiter so!

  9. 9 Frank Roth said at 09:03 on Oktober 8th, 2019:

    Super Beitrag! Weiter so!!

  10. 10 peter immel said at 09:04 on Oktober 8th, 2019:

    Hey, gute sache.

  11. 11 Frank Roth said at 09:07 on Oktober 8th, 2019:

    Ich hasse euch alle

  12. 12 Raschmotzer Danf said at 10:04 on Oktober 18th, 2019:

    Bachratz du opfa

  13. 13 Achim Lotzenfecker said at 10:05 on Oktober 18th, 2019:

    Schwanzgrüße von mir

  14. 14 Drache Offiziell said at 10:07 on Oktober 18th, 2019:

    Gedrollt wird ned

  15. 15 Kalle Arsch said at 10:50 on Oktober 18th, 2019:

    Geilooooo

  16. 16 Ruiner wankler said at 16:44 on Januar 29th, 2021:

    dange fürr die dipps!

  17. 17 Silas said at 15:12 on August 17th, 2021:

    Vielen Dank! 😀


Leave a Reply