在JOptionPane中对齐文本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在JOptionPane中对齐文本相关的知识,希望对你有一定的参考价值。

我有以下代码行

JOptionPane.showMessageDialog(rootPane, "Código incorreto
Por favor verifique", "Atenção", JOptionPane.ERROR_MESSAGE);

在这里显示此消息

enter image description here

如何将这2行文本放在盒子的中心?

答案
JLabel label = new JLabel("<html><center>Código incorreto<br>Por favor verifique");
label.setHorizontalAlignment(SwingConstants.CENTER);
JOptionPane.showMessageDialog(null, label, "Atenção", JOptionPane.ERROR_MESSAGE);

试试这个吧。预习:

enter image description here

另一答案

您可以使用以下代码:

String message = "<html><body><div width='100px' align='center'>Código incorreto<br>Por favor verifique</div></body></html>";
JLabel messageLabel = new JLabel(message);
JOptionPane.showConfirmDialog(null, messageLabel, "Atenção", JOptionPane.DEFAULT_OPTION);

以上是关于在JOptionPane中对齐文本的主要内容,如果未能解决你的问题,请参考以下文章

Java JOptionPane 文本不可读

Java JOptionPane 默认文本

如何在Android的RowTable中对齐文本和按钮

如何更改 JOptionPane.showInputDialog 中按钮的默认文本

Java:JOptionPane.showMessageDialog的问题

带有自举程序的日期选择器对齐的问题