Eingabendialog Java anzeigen
import javax.swing.JOptionPane;
public class SimpleInputDialog1 {
public static void main(String[] args){
String m = JOptionPane.showInputDialog("Anyone there?");
System.out.println(m);
}
}
Crazy Copperhead