Properties Java

We know earlier Hashtable stores key/value pairs. There exists one more similar data structure that stores key/value pairs – Properties. Infact, Properties is derived from Hashtable. They differ very slightly. The key/value pair in Hasahtable can be objects of any Java class. But incase of Properties, the key/value pair should be strings only. Following is …

Properties Java Read More »