所以我有這個代碼。如何從jOptionPane顯示JFrame上的輸入?
String input;
input = JOptionPane.showInputDialog("Type words:");
如何顯示在JFrame
輸入如果這個代碼是我mouseListener
裏面?
我沒有使用System.out.println()
,因爲它只能在控制檯中打印。
所以我有這個代碼。如何從jOptionPane顯示JFrame上的輸入?
String input;
input = JOptionPane.showInputDialog("Type words:");
如何顯示在JFrame
輸入如果這個代碼是我mouseListener
裏面?
我沒有使用System.out.println()
,因爲它只能在控制檯中打印。
this怎麼樣?
String input;
input = JOptionPane.showInputDialog("Type words:");
JOptionPane.showMessageDialog(null, input);
如果你真的需要它是一個新的JFrame
所示,您可以創建一個新的JFrame
並添加input
到JLabel
;
JFrame frame = new JFrame("The Title");
frame.setDefaultCloseOperation(EXIT_ON_CLOSE);
frame.setSize(100,100);
frame.getContentPane().add(new JLabel(input));
frame.setLocationRelativeTo(null);
frame.setVisible(true);
感謝@mKorbel添加鏈接:) –
我會試試你的代碼! :D謝謝! – alicedimarco
等一下,你建議我把這個放在哪裏?主要?構造函數或其他方法?因爲我不知道如何使它工作。我有一個Main,一個構造函數,一個放置所有JFrames和一些mousemotionlisters的方法。 – alicedimarco
爲了更快得到更好的幫助,請發佈[SSCCE](http://sscce.org/)。 –