What is the difference between a Hashtable and Properties?

link|improve this question

See this similar question: stackoverflow.com/questions/2977125/… – Jesper Jun 8 '10 at 13:34
feedback

2 Answers

up vote 9 down vote accepted

Properties is a very specialized class that's designed to hold configuration and/or resources that are usually stored in some file.

It has several features that Hashtable doesn't have (and shouldn't have):

A Hashtable on the other hand is a general-purpose Map implementation (which is mostly replaced by the HashMap, however).

link|improve this answer
feedback

Properties is a subclass of Hashtable, and it is designed for string to string mappings. It also adds the ability to store the mapping into a text file, and read it back.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.