JLabel als Hyperlink
Jedes Label kann mit wenig Code einen Hyperlink enthalten:
JLabel label = new JLabel("<html><body><a href=\"http://javawiki.sowas.com\">http://javawiki.sowas.com</a></body></html>"); label.setCursor(Cursor.getPredefinedCursor(Cursor.HAND_CURSOR)); label.addMouseListener(new MouseAdapter() { @Override public void mouseClicked(MouseEvent e) { if (e.getClickCount() > 0) { // Browseraufruf (für Windows): Runtime.getRuntime().exec("cmd.exe /c start http://javawiki.sowas.com"); } } });