2
我想使Java的,在那裏你不能鍵入字母,只有數字如何在Java上創建完美的整數對話框?
這裏完美的整數對話是我的代碼:
public class PMain {
public static void main(String args[]) {
String a = JOptionPane.showInputDialog("Type the number for 'A'");
int A = Integer.parseInt(a.trim());
String b = JOptionPane.showInputDialog("Type the number for 'B'");
int B = Integer.parseInt(b.trim());
}
}
可能重複的[JOptionPane輸入到int](http://stackoverflow.com/questions/3120922/joptionpane-input-to-int) –
聽起來不太完美。我期望*完美*對話框可以支持像1e6這樣的科學記數法。 :) – progo