我想要一个带文本框和按钮的joptionpane,当点击按钮执行我自己的功能时
答案 0 :(得分:4)
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package org.life.java.so.questions;
import javax.swing.JOptionPane;
/**
*
* @author Jigar
*/
public class InputDialog {
public static void main(String[] args) {
String input = JOptionPane.showInputDialog("Enter Input:");
System.out.println(input);
}
}
输出
答案 1 :(得分:0)
也许你只想要一个带有JLabel或JTextArea和JButton的模态JDialog。