Interesting review of some JDK 7 features:
I think the main one I like is the try-with-resource hack:
private String example() throws IOException {
try(BufferedReader reader = new BufferedReader(...) {
return reader.readLine();
}
}