Hi all,

I want to add a html link to a web page on a JLabel. I try something this.

Code:
        String htmtString = "<html><head></head><body><a href = \"http://www.google.com/\">Google</a></body></html>";
        
        jLabel1.setText(htmtString);
Actually it display the blue color link on the label. But I can't click and go the site. How can I do it.