17

我需要显示一条需要在屏幕上显示 5 秒的信息消息,在此期间,用户无法关闭对话框。规范清楚地表明对话框不应该有任何按钮。有没有办法以对话框没有按钮的方式使用 JoptionPane.showMessageDialog ?

4

4 回答 4

38

使用这种方式怎么样showOptionDialog,也许不是showMessageDialog,但是当我们没有按钮或输入文本的地方时也是一样的(缺点是它可以被用户关闭):

在此处输入图像描述

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

更新

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

在此处输入图像描述

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);
于 2013-01-02T18:18:37.427 回答
1

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

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

于 2013-01-02T18:21:32.400 回答
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");
   }
}

输出: 第一个弹出窗口

第二个弹出窗口

于 2020-03-22T19:38:31.863 回答
-1

我不认为您可以使用 JOptionPane,因为如果我没记错的话,它们至少总是有一个按钮。但是您可以使用例如这样的启动面板,或者您可以使用普通面板并在其中运行一个线程。喜欢

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))如果您不希望其余图形冻结,则必须使用该方法创建此 Frame。

于 2013-01-02T18:16:35.180 回答