How can I load html with contents of frames?

CrequeCypeder

New Member
I try to put HTML code from websites into a string. The HTML should also contain the HTML of its containing frames. Basically it should include everything which you see in the developer tools of chrome or Firefox (F12). Every method I tried does not include the frames.I tried with jsoup:\[code\]this.doc = Jsoup.connect("www.someurl.com").get();\[/code\]or\[code\]this.doc = Jsoup.parse(new URL("www.someurl.com"), 2000);\[/code\]... and also with a \[code\]bufferedReader\[/code\] without success.
 
Back
Top