how to use html code inside of java code -one jLable Two Colors Text

Hi there to day we talk about How to use html code inside of java code.

1. First Create New Project. 

2.  Create New jFrame and jLable .its Variable Name is lbl

3. Create new method name colome() and write down bellow code.

public void colome(){
String fname = "Jhone" ;
String lname = "Smith" ;
String mname = "djo" ;
String txt = "<html> <font COLOR=RED SIZE =30> <b>"+ fname +" </b> </font> "
+"<font COLOR =Green SIZE =20> <u>"+mname+" </u> </font> "
+ "<font COLOR=Blue SIZE =40 > <i> "+ lname +" </i> </font> "
+"<UL> "
+ "<li> List one"
+ "<li> List Two"
+ "<li> List All"
+ "</UL>"
+ "</html>";
lb1.setText(txt);
}
view raw code.java hosted with ❤ by GitHub

 


4. Call it NewJFrame load  

    public NewJFrame() { initComponents(); colome(); }


4.Run NewJFrame and Edit  and test it



Download code free on GitHub ✌

Post a Comment

Previous Post Next Post

Featured Post