16.12 Properties Class
A Properties object is a persistent Hashtable
that stores key–value pairs of String
s—assuming that you use methods setProperty and getProperty to manipulate the table rather than inherited Hashtable
methods put
and get
. By “persistent,” we mean that the Properties
object can be written to an output stream (possibly a file) and read back in through an input stream. A common use of Properties
objects in prior versions of Java was to maintain application-configuration data or user preferences for applications. [Note: The Preferences API (package java.util.prefs) is meant to replace this particular use of class Properties
but is beyond the scope of this book. To learn more, visit http://bit.ly/JavaPreferences
.] Class Properties ...
Get Java™ How To Program (Early Objects), Tenth Edition now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.