Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

[resolved] jsoup

Hello, I want to make the parser a html pages with jsoup. But when I send running, jsoup not be solved.
Example:
tJava component -> code -> Document doc = Jsoup.connect("www.google.it").get();
Labels (3)
2 Replies
Anonymous
Not applicable
Author

Hi
You need to import external jar with tLibraryLoad before using Jsoup to parse HTML page, refer to online user manual:
https://help.talend.com/search/all?query=tLibraryLoad&content-lang=en
and then, add the full package path to the class name.
Document doc = the full package path.Jsoup.connect("www.google.it").get();
Shong
Anonymous
Not applicable
Author

thank you very much