i want to get the entire content of url (i.e) till the end of that url.. but after getting few contents because of partial loading ..i cant able to get remaining contents...is there is any way to get whole content from url even after the partial loading ...
String url = "URL/"; // getting URL
try {
Document doc = Jsoup.connect(url).get();
FileWriter fw=null;
BufferedWriter bw=null;
fw=new FileWriter("D:\\url.txt");
bw=new BufferedWriter(fw);
String line = doc.text();
System.out.println(line);
bw.write(line);
} catch (IOException ex) {
Logger.getLogger(NewJFrame.class.getName())
.log(Level.SEVERE, null, ex);
}