У меня есть следующая строка кода
JOptionPane.showMessageDialog(rootPane, "Código incorreto\nPor 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);