/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.life.java.so.questions;
import javax.swing.JOptionPane;
/**
*
* @author Jigar
*/
public class InputDialog {
public static void main(String[] args) {
String input = JOptionPane.showInputDialog("Enter Input:");
System.out.println(input);
}
}
Выход:
![alt text](https://i.stack.imgur.com/yfeeb.png)