java小程序之(GUI)输入对话框JOptionpane.showInputDialog

数据是String类型,可以用Integer.ParseInt()转换成int类型
示例代码:

//用到了javax.swing下的类JOptionPane
//显示一个输入对话框(GUI),并从中获取数据。
//将String类型数据的数字转换成数字(int double float等)Integer
import java.util.*;
//java.long.*;//Integer
import javax.swing.*;//JOptionPane
public class Demo032201{
    public static void main( String [] args ){
        String input = JOptionPane.showInputDialog( "enter an input" );
        //String input = JOptionPane.showInputDialog( null, "enter an input", "Input Dialog Demo", JOptionPane.QUESTION_MESSAGE );
        System.out.println( "input = " + input );
        int xxx = Integer.parseInt( input );
        System.out.println( input );
    }
}

你可能感兴趣的:(java)