集册 Java实例教程 使用JOptionPane类获取输入

使用JOptionPane类获取输入

欢马劈雪     最近更新时间:2020-01-02 10:19:05

674
使用JOptionPane类获取输入

import javax.swing.JOptionPane;/** nowjava - 时代Java 提供 **/


public class DialogApp

{

  public static void main(String[] args)

  {

    String s = JOptionPane.showInputDialog("Enter an integer:");

    int x = Integer.parseInt(s);

    System.out.println("You entered " + x + ".");

  }


}