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
141 Views Asked by Stack Diego At
1
There are 1 best solutions below
Related Questions in HTML-PARSING
- Is this file an XML or HTML file? How can I parse it?
- Parsing HTML tree in lxml : how can I retrieve the text inside the element?
- getting specific images from page
- PHP split or explode string on <img> tag
- Parsing HTML source to make some replacements
- Python RegEx for this HTML String
- Mechanize parser working with one variable but not with array
- how to extract text from a html element by id and assign to a php variable?
- Grabbing text data from Baseball-reference Python
- Python Beautiful Soup Web Scraping Specific Numbers
- Extracting Table Data using JSoup
- Get attribute values by BeautifulSoup
- Is the insertion of <tbody> in HTML tables standard?
- Finding all tags and attributes in a HTML
- Regex to select string only between specific strings, uninclusive
Related Questions in JSOUP
- Cannot download full Document using HtmlUnit and Jsoup combination (using Java)
- Using JSoup to Access Site with SSO
- Parse the inner html tags using jSoup
- How to get the actual dimension of image
- How Get The text on a separate line with JSOUP in Android?
- Get all elements with Jsoup
- Jsoup Login aspx Digikey
- Jsoup select not returning all elements
- JSOUP - How to get list of disallowed tags found in html?
- The same divs for several references and duplicate results (Jsoup)
- Extracting Table Data using JSoup
- How can I get href attribute from a dynamic link using java?
- Cannot Get HTML Elements (JSOUP)
- Unable to navigate aspx pages via jsoup while scraping
- How to Export an HTML table as an Excel while maintaining style and applying freeze pane
Related Questions in NETWORK-UTILIZATION
- Calculating Utilization in a Stop-And-Wait Protocol
- find WkWebView's data consumption
- Get network utilization in c#
- How to profile network utilization of a .NET application
- Combining Two SQL queries for Network Utilization
- extracting CPU usage,Memory usage and network utilization using java on windows/linux
- calculating link utilization using ns2
- Jsoup mobile data consumption
- Detecting if internet connection is busy
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 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?