文件名称:testdialog
文件大小:272B
文件格式:JAVA
更新时间:2018-11-04 09:05:49
test
import javax.swing.JOptionPane; public class TestDialog{ public static void main(String[] args) { String str="Please input two Integers"; str=JOptionPane.showInputDialog(null,str); args=str.split(" ",2); JOptionPane.showMessageDialog(null,args[0]); } }