没有按钮的JOptionPane

时间:2013-01-02 18:08:52

标签: java swing joptionpane

我需要在屏幕上显示需要5秒的信息消息,在此期间,用户无法关闭对话框。规范明确指出对话框不应该有任何按钮。 有没有办法可以在对话框没有按钮的情况下使用JoptionPane.showMessageDialog?

4 个答案:

答案 0 :(得分:30)

使用showOptionDialog的方式怎么样,也许不是showMessageDialog,但是当我们没有按钮或输入文字的地方时(同样可以由用户关闭),同样的事情:

enter image description here

  JOptionPane.showOptionDialog(null, "Hello","Empty?", JOptionPane.DEFAULT_OPTION,JOptionPane.INFORMATION_MESSAGE, null, new Object[]{}, null);

<强>更新

这是另一种方式,它使用JOptionPaneJDialog(更好,因为用户无法关闭):

enter image description here

final JOptionPane optionPane = new JOptionPane("Hello world", JOptionPane.INFORMATION_MESSAGE, JOptionPane.DEFAULT_OPTION, null, new Object[]{}, null);

final JDialog dialog = new JDialog();
dialog.setTitle("Message");
dialog.setModal(true);

dialog.setContentPane(optionPane);

dialog.setDefaultCloseOperation(JDialog.DO_NOTHING_ON_CLOSE);
dialog.pack();

//create timer to dispose of dialog after 5 seconds
Timer timer = new Timer(5000, new AbstractAction() {
    @Override
    public void actionPerformed(ActionEvent ae) {
        dialog.dispose();
    }
});
timer.setRepeats(false);//the timer should only go off once

//start timer to close JDialog as dialog modal we must start the timer before its visible
timer.start();

dialog.setVisible(true);

答案 1 :(得分:1)

看起来大卫想出了一些东西来满足你对“无按钮”的要求。

话虽如此,听起来您可能需要澄清您的实际要求。真的需要对话框是不可关闭的,还是没有按钮来关闭对话框? JOptionPane和JDialog有一个关闭按钮,如标准窗口。

答案 2 :(得分:0)

我不认为你可以使用JOptionPane,因为如果我没记错,他们总是至少有一个按钮。 但是您可以使用例如this之类的启动面板,或者您可以使用普通面板并在其中运行一个线程。 像

public class TestFrame extends JFrame implements Runnabel{

   private Thread thread;
   private CallerClass c; //Class which built this frame

   public TestPanel(CallerClass cc){
         this.c = cc;
         this.thread = null;
         //Window can't be closed on (x)
         this.setDefaultCloseOperation(DO_NOTHING_ON_CLOSE); 
         //some things you put into your frame
         //...
         this.setVisible(true);
   }

   public synchronized void start(){
         if (thread == null){
         thread = new Thread(this);
     thread.start();
     }


    @Override
    public void run() {
          try{
              Thread.sleep(5000);
          }catch(InterruptedException e){ }

          this.setVisible(false);
          this.c.destroyFrame();

          this.stop();
     }
 }

其中destroyFrame()是你的类中的e方法,用于构建此面板以将其销毁(将其设置为null或其他),如果您不想要其余的,则必须使用SwingUtilities.invokeLater(new TestFrame(this))创建此框架你的图形要冻结。

答案 3 :(得分:0)

我使用了上面的一些代码来创建一个“方法”来进行外部调用。因此,这可以允许多个弹出窗口。我的版本允许更改消息类型,标题,显示时间,屏幕位置,文本,并提供了更改文本字体和颜色的示例。

/*
 * LabelDemo.java contains a method that allow multiple popups. This version allows
 * changing the message type, title, display time, screen placement, text and
 * provides examples of changing the font and color of the text message.
 */ 

package components;

import java.awt.event.ActionEvent;
import javax.swing.AbstractAction;
import javax.swing.JDialog;
import javax.swing.JOptionPane;
import javax.swing.Timer;

/*
 * LabelDemo.java 
 * 
 */
public class LabelDemo {
   public LabelDemo() {
   }

   public static void main(String[] args) {
      TextDisplayPopup("1st popup", "<html><font size=11 color=blue>information type",
            6, 50, 105, JOptionPane.INFORMATION_MESSAGE);
      TextDisplayPopup("2nd popup", "<html><font size=15 color=red>ERROR TYPE\n"
            + "<html><font size=6 color=green>2nd line with long sentence for checking"
            + " popup box dynamic sizing.",
            10, 240, 240, JOptionPane.ERROR_MESSAGE);
   }

   public static void TextDisplayPopup(String strTitle, String strText,
         int iDelayInSeconds, int iX_Location, int iY_Location, int iMessageType) {
      final JOptionPane optionPane = new JOptionPane(strText,
            iMessageType, JOptionPane.DEFAULT_OPTION,
            null, new Object[]{}, null);
      final JDialog dialog = new JDialog();
      dialog.setTitle(strTitle);
      dialog.setModal(false);
      dialog.setContentPane(optionPane);
      dialog.setDefaultCloseOperation(JDialog.DO_NOTHING_ON_CLOSE);
      dialog.pack();
      dialog.setLocation(iX_Location, iY_Location);

      //create timer to dispose of dialog after, iDelayInSeconds, seconds
      Timer timer = new Timer(iDelayInSeconds*1000, new AbstractAction() {
          @Override
          public void actionPerformed(ActionEvent ae) {
              dialog.dispose();
          }
      });
      timer.setRepeats(false);  //  one-time use timer

      //  timer removes dialog after iDelayInSeconds
      timer.start();
      dialog.setVisible(true);
      System.out.println("end of test");
   }
}

输出: 1st popup

2nd popup