Are there better ways to read an entire html file to a single string variable than:
String content = \"\"; try { BufferedReader in = new Buff
There's the IOUtils.toString(..) utility from Apache Commons.
If you're using Guava there's also Files.readLines(..) and Files.toString(..).
Guava