消息在对话框中被切断

时间:2014-03-26 20:34:18

标签: java

消息在对话框中被切断。有人会告诉我如何解决它。提前谢谢。

enter image description here

有我的代码:

 public static void DisplayErrorMsg(String msg){
    //custom title, error icon
     JOptionPane.showMessageDialog(null,
         msg,
         "Error",
         JOptionPane.ERROR_MESSAGE);
 }

1 个答案:

答案 0 :(得分:0)

您可以使用html标记(例如<p>)来完成JOPtionPane中的自动换行功能。 使用

JOptionPane.showMessageDialog(null, "<p style='width:300px;'>"+msg+"</p>", "Error", JOptionPane.ERROR_MESSAGE);