Getting size of a webpage before parsing it
- by user2869844
I am trying to parse a webpage using jsoup and all is working good using this code:
class DownloadSearchResultsTask extends AsyncTask<String, Integer, ArrayList> {
private String link = "link";
private String title = "title";
private String vote = "vote";
private String age = "age";
private String size = "size";
private String…