Kopieren Sie den Codecode wie folgt:
Paket test001;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JToolBar;
Die öffentliche Klasse TestJOptionPane implementiert ActionListener{
private JFrame jf = new JFrame("Standarddialogfeldtest");
/**
* @param args
*/
public static void main(String[] args) {
// TODO Automatisch generierter Methoden-Stub
new TestJOptionPane().createUI();
}
public void createUI(){
JToolBar jtb = new JToolBar();
String[] s = {"Fehler", "Bestätigung des Beendens 1", "Bestätigung des Beendens 2", "Warnung", "Eingabe", "Auswählen"};
int size = s.length;
JButton[] button = new JButton[size];
for(int i = 0; i < size; i++){
button[i] = new JButton(s[i]);
button[i].addActionListener(this);
jtb.add(button[i]);
}
jf.add(jtb, „North“);
jf.setSize(350, 150);
jf.setLocation(400, 200);
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jf.setVisible(true);
}
@Override
public void actionPerformed(ActionEvent e) {
// TODO Automatisch generierter Methoden-Stub
String s = e.getActionCommand();
if(s.equals("Fehler")){
JOptionPane.showMessageDialog(null, „Anzuzeigende Fehlermeldung---“,
„Fehlermeldung“,JOptionPane.ERROR_MESSAGE);
}
else if(s.equals("Beendigungsbestätigung 1")){
int result = JOptionPane.showConfirmDialog(null,
„Programm vor dem Start speichern?“);
if(result == JOptionPane.YES_OPTION){
System.out.println("Programm speichern---");
System.exit(0);
}
sonst if(result == JOptionPane.NO_OPTION){
System.exit(0);
}
}
else if(s.equals("Beendigungsbestätigung 2")){
int result = JOptionPane.showConfirmDialog(null, "Programm vor dem Beenden speichern?");
if(result == JOptionPane.YES_OPTION){
System.out.println("Programm speichern---");
System.exit(0);
}
sonst if(result == JOptionPane.NO_OPTION){
System.exit(0);
}
}
sonst if(s.equals("warning")){
Object[] Optionen = {"Weiter", "Rückgängig"};
int result = JOptionPane.showOptionDialog(null,
„Dieser Vorgang kann zu Datenverlust führen“, „Warnung“, JOptionPane.DEFAULT_OPTION,
JOptionPane.WARNING_MESSAGE, null, Optionen, Optionen[0]);
if(result == 0){
System.out.println("Vorgang fortsetzen---");
}
}
sonst if(s.equals("input")){
String name = JOptionPane.showInputDialog("Bitte geben Sie Ihren Namen ein:");
if(name != null){
System.out.println("Name: " + name);
}
}
sonst if(s.equals("select")){
Object[] möglicheWerte = {"Sport", "Politik", "Wirtschaft", "Kultur"};
Object selectedValue = JOptionPane.showInputDialog(null,
„Wählen Sie eins aus“, „Eingabe“, JOptionPane.INFORMATION_MESSAGE, null,
mögliche Werte, mögliche Werte [0]);
String Choose = (String)selectedValue;
if(choose != null){
System.out.println("Was Sie ausgewählt haben, ist: "+ wählen);
}
}
}
}