Which is the best way to add a hyperlink in jLabel? I can get the view using html tags, but how to open the browser when the user clicks on it?
|
|
You can do this using a
|
|||||||
|
|
I'd like to offer yet another solution. It's similar to the already proposed ones as it uses HTML-code in a JLabel, and registers a MouseListener on it, but it also displays a HandCursor when you move the mouse over the link, so the look&feel is just like what most users would expect. If browsing is not supported by the platform, no blue, underlined HTML-link is created that could mislead the user. Instead, the link is just presented as plain text. This could be combined with the SwingLink class proposed by @dimo414.
|
|||||||||||
|
|
Maybe use |
||||
|
|
|
You might try using a JEditorPane instead of a JLabel. This understands basic HTML and will send a HyperlinkEvent event to the HyperlinkListener you register with the JEditPane. |
|||
|
|
|
I wrote an article on how to set a hyperlink or a mailto on a jLabel. So just try it : I think that's exactly what you're searching for. Here's the complete code example :
|
||||
|
|
|
I didn't really like the way the @McDowell's code works (but thanks for the answer, it helped me!) since text other than the hyperlink is clickable, and it still looks like a button, even though some of the UI stuff has been changed/hidden. I'm no usability expert, but I'm sure it wouldn't be terribly hard to make a JLabel work correctly according to whatever standards there are - the linked Wikipedia article wasn't terribly clear about the exact problems or solutions, but I'd be happy to try to implement them if pointed in the right direction. So I threw together my own class extending JLabel from McDowell's code. IMHO it works quite nicely, and feels more like a link:
You could also, for instance, change the link color to purple after being clicked, if that seemed useful. It's all self contained, you simply call:
|
|||
|
|
|
I know I'm kinda late to the party but I made a little method others might find cool/useful.
It'll give you a JLabel that acts like a proper link. In action:
If you'd like no tooltip just send a null. Hope someone finds this useful! (If you do, be sure to let me know, I'd be happy to hear.) |
||||
|
|
|
If <a href="link"> doesn't work, then:
Have a look at java.awt.Desktop API for opening a link using the default browser (this API is available only from Java6). |
||||
|
|