Lack of imagination is one of our worst sins as software developers. We do the same things over and over again, but we rarely modify our ways: me at least. After some years, these are the tools that made it into my tricks box for everyday tasks. Tiresome operations are not my thing.
Chances are you are already using at least some of these, but here we go anyways:
The bread and butter of the commons-lang library, this utility class includes some methods that should seriously have been included in String long time ago.
1.StringUtils.isEmpty(null) && StringUtils.isEmpty(""); // true2.StringUtils.isBlank(" \n\t"); // true3.StringUtils.substringAfterLast("foo.bar.baz", "."); // "baz"4.StringUtils.substringBeforeLast("foo.bar.baz", "."); // "foo.bar"5.StringUtils.split("foo.bar.baz", '.'); // { "foo", "bar", "baz" }6.StringUtils.split("foo, bar,baz", ", "); // { "foo", "bar", "baz" }7.StringUtils.leftPad("1", 3, '0'); // "001"A must-have for the rare occasions where you need to manipulate files by hand. Both are pretty much alike (FileUtils for File, IOUtils for InputStream and Reader classes) and come bundled in commons-io.
01.File file1;02.File file2;03.InputStream inputStream;04.OutputStream outputStream;05.06.// copy one file into another07.FileUtils.copyFile(file1, file2);08.IOUtils.copy(inputStream, outputStream);09.10.// read a file into a String11.String s1 = FileUtils.readFileToString(file1);12.String s2 = IOUtils.toString(inputStream);13.14.// read a file into a list of Strings, one item per line15.List<String> l1 = FileUtils.readLines(file1);16.List<String> l2 = IOUtils.readLines(inputStream);17.18.// put this in your finally() clause after manipulating streams19.IOUtils.closeQuietly(inputStream);20.21.// return the list of xml and text files in the specified folder and any subfolders22.Collection<File> c1 = FileUtils.listFiles(file1, { "xml", "txt" }, true);23.24.// copy one folder and its contents into another25.FileUtils.copyDirectoryToDirectory(file1, file2);26.27.// delete one folder and its contents28.FileUtils.deleteDirectory(file1);This is the best implementation of a collections extension that I know of. Some of these are shouting to be included in the JDK:
01.// create an ArrayList with three arguments02.List<String> list = Lists.newArrayList("foo", "bar", "baz");03.04.// notice that there is no generics or class cast,05.// and still this line does not generate a warning.06.Set<String> s = Sets.newConcurrentHashSet();07.08.// intersect and union are basic features of a Set, if you ask me09.Set<String> s = Sets.intersect(s1, s2);10.11.// Example of multiple values in a Map12.ListMultimap<String, Validator> validators = new ArrayListMultimap<String, Validator>();13.validators.put("save", new RequiredValidator());14.validators.put("save", new StringValidator());15.validators.put("delete", new NumberValidator());16.17.validators.get("save"); // { RequiredValidator, StringValidator }18.validators.get("foo"); // empty List (not null)19.validators.values(); // { RequiredValidator, StringValidator, NumberValidator }Not everybody needs the heavy lifting of java.util.concurrent, but the concurrent collections are handy:
1.// a map that may be modified (by the same or different thread) while being iterated2.Map<String, Something> repository = new ConcurrentHashMap<String, Something>();3.4.// same with lists. This one is only available with Java 65.List<Something> list = new CopyOnWriteArrayList<Something>();Hardly a large toolbox, is it? If your favourite library is missing, feel free to add it below.
You must be logged in to post a comment.