How to put a message in bold I have this example
For saying I have this code:
public void pedirFecha(){
JDateChooser jd = new JDateChooser();
String message = "porfavor ingrese una fecha ";
Object[] params = {message, jd};
params[0] = message.concat("\n FECHA NO DISPONIBLE: La fecha ingresada
ya fue asignada para esta operacion"); // esto debe ir en negrita
int nbot=0;
nbot= JOptionPane.showConfirmDialog(null, params, "INDEXACION ",
JOptionPane.OK_CANCEL_OPTION);
}