| View: | [ 2009 | 2008 | 2007 | 2006 | 2005 | 2004 | 2003 | 2002 ] |
| Articles Tips | Tutorials |
- Regular Expressions in J2SE by Hetal C. Shah - [Clicks: 20]
The java.util.regex package in JDK 1.4 is quite handy and useful to the developers of search, extract, and replace systems such as search engines, rule-based data formation and transformation engines, EAI, and so on. Regular expressions are also used in extracting meaningful information from large chunks of text data, hence the java.util.regex package will significantly help Java developers with efficient development and maintenance of such applications. Although the examples in this article were simplistic, they lay the groundwork for examining the usefulness of the package.
http://www.onjava.com/pub/a/onjava/2003/11/26/regex.html - Nov, 2003 - Scheduling recurring tasks in Java applications by Tom White - [Clicks: 20]
In this article, Java developer Tom White shows you how to build a simple, general scheduling framework for task execution conforming to an arbitrarily complex schedule.
[Includes source code]
http://www-106.ibm.com/developerworks/java/library/j-schedule.html - Nov, 2003 - Jump-Start Your Java Development on Linux, Part 2: Starting Out by Robert Clevenger - [Clicks: 3]
In the second installment of our hands-on guide to developing and deploying Java client applications on Linux, Clevenger addresses the command-line approach to development.
http://otn.oracle.com/oramag/webcolumns/2003/techarticles/clevenger_jumpstart2.html - Sep, 2003 - Jump-Start Your Java Development on Linux by Robert Clevenger - [Clicks: 9]
Oracle's open-source software expert Rob Clevenger begins a series of hands-on guides to jump-starting Java development projects on Linux. This inaugural edition focuses on the obvious first step: installation.
http://otn.oracle.com/oramag/webcolumns/2003/techarticles/clevenger_jumpstart1.html - Aug, 2003 - Customize error logging with the Logging API by Wai Tik Chan - [Clicks: 16]
JDK 1.4's Logging API offers developers more control of when, where, and how your applications log crucial reporting data. Find out how to fine-tune your logging to maximize flexibility and efficiency.
http://builder.com.com/5100-6370-5035094.html?tag=sc - Jun, 2003
- ThreadLocal Variables for Storing Thread-Specific State Information by John Zukowski - [Clicks: 19]
Have you ever needed variables that were local to the scope of a thread, where each thread managed its storage, and it would be impossible for one thread to access the state information of another thread? The standard libraries offer two classes that provide this capability: ThreadLocal and InheritableThreadLocal.
http://java.sun.com/developer/JDCTechTips/2003/tt1208.html#2 - Dec, 2003
- Getting started with new I/O (NIO) by Greg Travis - [Clicks: 54]
The new input/output (NIO) library, introduced with JDK 1.4, provides high-speed, block-oriented I/O in standard Java code. This hands-on tutorial covers the NIO library in great detail, from the high-level concepts to under-the-hood programming detail. You'll learn about crucial I/O elements like buffers and channels, and examine how standard I/O works in the updated library.
[Formats: HTML, PDF, Zip]
http://www-106.ibm.com/developerworks/edu/j-dw-java-nio-i.html - Jul, 2003