Commons Lang: StringUtils
My new favorite method is the equals
method on Commons Lang's
StringUtils class. It takes the check for null out of your logic and can help you create cleaner code. Before using it you might have to write something like this:
if (request.getParameter("checkbox") != null && (request.getParameter("checkbox").equals("true"))) {
With StringUtils.equals(String, String), you get a little less coding:
if (StringUtils.equals(request.getParameter("checkbox"), "true")) {
If you're using Struts or some other library that already depends on commons-lang, why wouldn't you use it? Possibly performance reasons, but I doubt it causes much of a hit.
Posted by James Chochlinski on January 22, 2003 at 01:17 PM MST #
Posted by Martin van den Bemt on January 22, 2003 at 03:03 PM MST #
Posted by Chris Winters on January 22, 2003 at 03:58 PM MST #
Posted by Danman on January 22, 2003 at 04:54 PM MST #