消息在对话框中被切断。有人会告诉我如何解决它。提前谢谢。
有我的代码:
public static void DisplayErrorMsg(String msg){
//custom title, error icon
JOptionPane.showMessageDialog(null,
msg,
"Error",
JOptionPane.ERROR_MESSAGE);
}
答案 0 :(得分:0)
您可以使用html标记(例如<p>
)来完成JOPtionPane
中的自动换行功能。
使用
JOptionPane.showMessageDialog(null,
"<p style='width:300px;'>"+msg+"</p>",
"Error",
JOptionPane.ERROR_MESSAGE);