我正在尝试使我的代码更加用户友好。我有这部分代码,想知道如何将其转换为 joptionpane。我发现了这一点 int result = JOptionPane.showConfirmDialog(frame, "Continue printing?");
,但使用另一个 jframe 似乎有点奇怪。
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();
};