Java Swing How to - Create JOptionPane with a textbox and a button








Question

We would like to know how to create JOptionPane with a textbox and a button.

Answer

import javax.swing.JOptionPane;

public class Main {
  public static void main(String[] args) {
    String input = JOptionPane.showInputDialog("Enter Input:");
    System.out.println(input);
  }
}