在JOptionPane中对齐文本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在JOptionPane中对齐文本相关的知识,希望对你有一定的参考价值。
我有以下代码行
JOptionPane.showMessageDialog(rootPane, "Código incorreto
Por favor verifique", "Atenção", JOptionPane.ERROR_MESSAGE);
在这里显示此消息
如何将这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);
试试这个吧。预习:
另一答案
您可以使用以下代码:
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中对齐文本的主要内容,如果未能解决你的问题,请参考以下文章
如何更改 JOptionPane.showInputDialog 中按钮的默认文本