Align text to the right in JOptionPane

后端 未结 4 778
有刺的猬
有刺的猬 2021-01-24 00:43

Is it possible to align the text to the right in JOptionPane? (I don\'t want to use JDialog) because I want to write some sentences in Arabic

4条回答
  •  面向向阳花
    2021-01-24 01:04

     String message = "
    This is some text!
    "; JLabel messageLabel = new JLabel(message); JOptionPane.showConfirmDialog(null, messageLabel);

提交回复
热议问题