text with link
hi!
is possible to append text to a textArea and the text become a link. i want to click in text append in textArea and go to a exactly location like C:\.
did i make my self clear? :)
hi!
is possible to append text to a textArea and the text become a link. i want to click in text append in textArea and go to a exactly location like C:\.
did i make my self clear? :)
You cant use JTextArea. Use JEditorPane or JTextPane. In this case you'll be using HTML for formatting.
Then attach a HyperlinkListener to the component to listen for link events. Example in JEditorPane documentation.
ICE