Java tutorial
import javax.swing.JOptionPane; public class Main { public static void main(String[] args) { String response = JOptionPane.showInputDialog("Please enter."); if (response == null) { System.out.println("cancelled."); } else { System.out.println("entered: " + response); } } }