img
The java.util Subpackages
Java defines the following subpackages to java.util:
· java.util.concurrent
· java.util.concurrent.atomic
· java.util.concurrent.locks
· java.util.jar
· java.util.logging
· java.util.prefs
· java.util.regex
· java.util.spi
· java.util.zip
Each is briefly examined here.
java.util.concurrent, java.util.concurrent.atomic, and java.util.concurrent.locks
The java.util.concurrent package along with its two subpackages, java.util.concurrent.atomic
and java.util.concurrent.locks, support concurrent programming. These packages provide
a high-performance alternative to using Java's built-in synchronization features when
thread-safe operation is required. These packages are examined in detail in Chapter 26.
java.util.jar
The java.util.jar package provides the ability to read and write Java Archive (JAR) files.
java.util.logging
The java.util.logging package provides support for program activity logs, which can be
used to record program actions, and to help find and debug problems.
java.util.prefs
The java.util.prefs package provides support for user preferences. It is typically used to
support program configuration.
java.util.regex
The java.util.regex package provides support for regular expression handling. It is described
in detail in Chapter 27.
java.util.spi
The java.util.spi package provides support for service providers. (Added by Java SE 6.)
java.util.zip
The java.util.zip package provides the ability to read and write files in the popular ZIP
and GZIP formats. Both ZIP and GZIP input and output streams are available.
Search WWH :
Custom Search
Previous Page
Java SE 6 Topic Index
Next Page
Java SE 6 Bookmarks
Home