You need to enable JavaScript to view more than 15 articles by this author.
Making Sense of Java's Dates Publish Date: Jun. 4, 2003
Measuring time is easy. Representing it is hard. Time zones, internationalization, and localization all make it tricky to give the correct date. Newer versions of the JDK have improved Java's date and time APIs, but they're still a little tricky. Philipp Janert explores date and time handling in Java.
Learning and Using Jakarta Digester Publish Date: Oct. 23, 2002
Turning an XML doc into Java bean objects is a common task, but the SAX and DOM APIs are too low-level. Jakarta Digester uses a series of rules to simplify this important task.
Simple XML Parsing with SAX and DOM Publish Date: Jun. 26, 2002
While there are two APIs for handling XML, SAX and DOM, they are large and formidable to beginners. This article offers a tutorial for simple XML parsing.