首页javajoptionpaneJava Swing - 如何从JOptionPane读入

Java Swing - 如何从JOptionPane读入

我们想知道如何从JOptionPane读入。
import javax.swing.JOptionPane;

public class Main {

  public static void main(String[] args) {
    String input = JOptionPane
        .showInputDialog("Enter the x coordinate of the circle");
    int xc = Integer.parseInt(input);
    System.out.println(xc);
  }
}