Here are some of my favorite simple, yet handy routines in guava:
List<String> lines = Files.readLines(file, charset);
This is the same as FileUtils.readLines() in apache commons io, but updated to use generics. Files doesn’t quite have all the things that FileUtils has, but there are many other helpful methods like deleteRecursively(), createParentsDir(), and move().
boolean isEmpty = Strings.isNullOrEmpty(yourString);
You’ve probably written something like this already, perhaps even several versions scattered in different projects. Why not just use one from an established api? You might also find emptyToNull() or repeat() useful while you’re looking around the Strings class.
Preconditions.checkArgument(boolean expression);
Read more: Coppery Keen Claws