20.12 Properties
Class
A Properties object is a persistent Hashtable
that normally stores key/value pairs of strings—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 bit.ly/ JavaPreferences
.]
Class ...
Get Java How to Program (early objects), 9/e 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.