带有文本框和按钮的joptionpane

时间:2011-01-05 08:47:34

标签: java swing joptionpane

我想要一个带文本框和按钮的joptionpane,当点击按钮执行我自己的功能时

2 个答案:

答案 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);
    }
}

输出

alt text

答案 1 :(得分:0)

也许你只想要一个带有JLabel或JTextArea和JButton的模态JDialog。