我怎样才能color
改变?String
Message Box
String patientname="ABC";
JOptionPane.showMessageDialog(null, "Patient "+patientname+" Already Assigned");
在上面的代码中,我想更改patientname
.
您可以使用 HTML 标签并将内容放入 JLabel 中,如下所示:
JOptionPane.showMessageDialog(null, new JLabel(
"<html><h2><font color='red'>Hello</font>, world </h2></html>"));
JOptionPane option = new JOptionPane();
option.setFont(new Font("Arial"));//Edit this line
option.showMessageDialog(null, "Text Test");
对于特定字符串
JOptionPane.showMessageDialog(null, "Patient <html><font color='red'>"+patientname+"</font></html> Already Assigned");