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.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | |
} |
4. Call it NewJFrame load
public NewJFrame() { initComponents(); colome(); }
4.Run NewJFrame and Edit and test it