I'm using Jsoup to parse in background the html of 3 different webpages every 10 minutes or so. However I found that in 2 days I consumed 18 mb of network data... Is there some way to reduce this huge data consumption? I don't need all the html page, is there a way to download only a part of the website html?
Jsoup mobile data consumption
144 Views Asked by Stack Diego At
1
There are 1 best solutions below
Related Questions in HTML-PARSING
- Can we style html tags with flutter_widget_from_html package
- How can we remove or escape garbage value like =3D or =3D&"e while parsing mhtml or html page using jsoup?
- how can i get website html code using requests?
- React js parse with content between html strips
- IMPORTXML: how to scrape NBA logos from a webpage (with Google Sheets)
- how to get table from site github.com with Cheerio google app script
- Want to retrieve data from files located within a SharePoint folder path
- python: parse html document with UNNESTED div tags into dataframe (using beautifulsoup)
- Trouble finding Youtube view count
- why does it not work to replace from local file's config?
- Python oneliner to remove tags from chuncks of HTML codes
- I am trying to open and html file with bs4 and i get this error
- why part of content disappear magically
- how to fix Error The markup in the document preceding the root element must be well-formed
- How can I get needs html from site?
Related Questions in JSOUP
- How to create an JSOUP element from byte array image (Load from Database)
- How can we remove or escape garbage value like =3D or =3D&"e while parsing mhtml or html page using jsoup?
- How to get a list of page objects using Jsoup
- What userAgent do I need for the method to return true?
- Jsoup runtime and debug behaviour is different?
- Replace text in HTML element and update the same file with Jsoup
- Parse complicated HTML table to 2D array with Java 8
- How to insert table element in html Document using JSoup
- How to scrape a Facebook page posts using jsoup?
- Java JSoup HTML API: How do I get JSoup to ignore custom tags?
- Error: package org.jsoup does not exist with import org.jsoup.Jsoup;
- Scraping Marquee Tag in Android App Using Jsoup
- Encountering issues when implementing url previewing in android using jsoup library
- JSoup not fetch all string from rest api in android?
- Jsoup parsing weird behavior
Related Questions in NETWORK-UTILIZATION
- find WkWebView's data consumption
- Combining Two SQL queries for Network Utilization
- Jsoup mobile data consumption
- extracting CPU usage,Memory usage and network utilization using java on windows/linux
- Calculating Utilization in a Stop-And-Wait Protocol
- Detecting if internet connection is busy
- calculating link utilization using ns2
- How to profile network utilization of a .NET application
- Get network utilization in c#
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
One way out would be to create a webservice that does the scraping and parsing and offers the results back to you in a condensed form. maybe create something on openshift?
18MB is actually not much over 2 days. Are you sure you can't afford this?