dialog box java input and output code example
Example: show input dialog java
import javax.swing.JOptionPane;
public class SimpleInputDialog1 {
public static void main(String[] args){
String m = JOptionPane.showInputDialog("Anyone there?");
System.out.println(m);
}
}