我試圖讓我的代碼更加用戶友好。我有這部分代碼,並想知道如何將它轉換爲joptionpane。 我發現這個int result = JOptionPane.showConfirmDialog(frame, "Continue printing?");
但似乎有點奇怪使用另一個jframe它。如何將此掃描器輸入「轉換」爲JOptionPane showOptionDialog
System.out.println("Make more selections? Type Yes or No");
Scanner scanre = new Scanner(System.in);
String selecend;
selecend = scanre.next();
if(selecend.equalsIgnoreCase("Yes")) {
System.out.println("Enter next selection: ");
query();
};
[你嘗試過什麼?](http://www.whathaveyoutried.com/)我的意思是,除了* *問我們。 BTW - *「,但似乎有點奇怪使用另一個jframe的。」*所以使用任何你有*的框架,但注意參數也可以是一個組件,或'空'.. –