Lucy wrote:
>> I was wondering is there a good way to setup and read in variable
>> entries in a property file?
...
>I think there is something like "load" that will put all that is there into
>an array for you.
You are thinking of java.util.Properties. It is basically a HashMap
with "load" and "save" methods to read and write property files, and
should do the job for the original poster.

Signature
Johan Utne Poppe
Dale King - 16 Jun 2005 14:33 GMT
> You are thinking of java.util.Properties. It is basically a HashMap
> with "load" and "save" methods to read and write property files, and
> should do the job for the original poster.
Actually it is a subclass of Hashtable. It is a very good example of
inappropriate use of inheritance when containment was the better answer.

Signature
Dale King