如何在swing中打开警告/信息/错误对话框?

如何在swing中打开警告/信息/错误对话框?如何在swing中打开警告/信息/错误对话框?

我需要带有“确定”按钮和“红十字”图像的标准错误对话框。 也就是说org.eclipse.jface.dialogs.MessageDialog.openError()的模拟

回答:

请参阅How to Make Dialogs。

您可以使用:

JOptionPane.showMessageDialog(frame, "Eggs are not supposed to be green."); 

而且你还可以更改符号的错误消息或警告。例如参见JOptionPane Features。

回答:

JOptionPane.showOptionDialog 

JOptionPane.showMessageDialog

....

看看这个tutorial关于如何进行对话。

回答:

import javax.swing.JFrame; 

import javax.swing.JOptionPane;

public class ErrorDialog {

public static void main(String argv[]) {

String message = "\"The Comedy of Errors\"\n"

+ "is considered by many scholars to be\n"

+ "the first play Shakespeare wrote";

JOptionPane.showMessageDialog(new JFrame(), message, "Dialog",

JOptionPane.ERROR_MESSAGE);

}

}

回答:

只是补充:这是一种显而易见的,但你可以使用静态导入给你一只手,像这样:

import static javax.swing.JOptionPane.*; 

public class SimpleDialog(){

public static void main(String argv[]) {

showMessageDialog(null, "Message", "Title", ERROR_MESSAGE);

}

}

以上是 如何在swing中打开警告/信息/错误对话框? 的全部内容, 来源链接: utcz.com/qa/262991.html

回到顶部