美文网首页
JOptionPane用法

JOptionPane用法

作者: ryhonour | 来源:发表于2018-11-13 17:44 被阅读0次

    JOptionPane用法

    1. 主要有四种消息提示框

    showConfirmDialog():确认对话框
    showInputDialog():输入对话框
    showMessageDialog():消息对话框
    showOptionDialog():选择对话框

    1. 对于showInputDialog()
    public static String showInputDialog(Component parentComponent,
            Object message, String title, int messageType)
    

    parentComponent 对话框所在的容器(可以为空)
    message 提示消息
    title 标题
    messageType 消息类型
    返回值为对话框内的内容

    //需要新建一个线程
    new Thread(){
        public void run(){
            String objName = JOptionPane.showInputDialog(null,
                "请输入"+type.getDisplayTypeName()+"名称:",
                "提示",JOptionPane.INFORMATION_MESSAGE);
        }
    }.start();  
    

    相关文章

      网友评论

          本文标题:JOptionPane用法

          本文链接:https://www.haomeiwen.com/subject/asoozftx.html