I was working on some of my project and i faced this problem,i want to print name in bold and txt as plain. Here TF1 and TF2 are JTextFields. TA1 is JTextArea. I will glad if you help me out. Thanks!
String name=TF1.getText();
String txt=TF2.getText();
TA1.append(name+":"+txt+"\n");