1
vote
1answer
70 views

Extracting one table from two tables using jsoup [closed]

I would like to extract data from the table that contains "100g of broccoli" instead of extracting data from two table simultaneously. Any ideas? The website is here. ...
3
votes
1answer
2k views

Simplifying HTML parsing

I'm working on an app for my school (not homework, an app that's going to be used by students), that's supposed to display our week schedules. I get the data from a webapp, but it has no API that I ...
4
votes
2answers
9k views

How to send HTML formated mail in Java?

This is what is my Java code to send mail in HTML format. ...
2
votes
2answers
337 views

Code Review Stack Exchange crawler

I am writing a program which automatically crawls codes from Code Review site! I'm quite new to Java. Would you please review my code? The required .jars: jsoup, org.apache.commons.io. ...
1
vote
1answer
247 views

HTML downloader and parser - Would you review my code?

Good morning! (or afternoon, or even evening!) This program downloads CodeReview HTML file and parses it. Could you review my program? There are 2 classes: First - main.java ...
10
votes
1answer
256 views

Webpage downloader

I wanted to download a webpage. I confirmed that this code works. But I'm not sure whether I'm doing it neatly. Would you review my (full) code? ...
1
vote
2answers
288 views

Is there a more efficient way of loading views within my java app?

I'm building a web application in Java. I'm new to Java, so before I get too far into this... I'm hoping to take advantage of all the experience here and learn the problems with this setup. My ...
10
votes
5answers
4k views

Android: remove useless whitespace from styled string

I have a big string resource (basically the "about" text of the application) which contains styles (such as <b>, <a> ...