| Author |
Store and Read key/value pairs
|
Paul Woods
Greenhorn
Joined: Nov 15, 2002
Posts: 23
|
|
I have a need to store some user selectable options for a struts app, but am waffling as to the best way to store those. Are there any portable / acceptable ways to store key value pairs somewhere in the application, a key interest here being that the mechanism I use has to be writable. I can add and use a table for this in a database, but it seems a bit overkill. Thanks, Paul
|
 |
Junilu Lacar
Bartender
Joined: Feb 26, 2001
Posts: 4118
|
|
|
Not really a Struts question. Moving to Java in General (Intermediate).
|
Junilu - [How to Ask Questions] [How to Answer Questions] [MiH]
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12271
|
|
For key/value pairs that are Strings, look at the Properties class in the java.util package. It is designed for exactly this purpose. Bill
|
Java Resources at www.wbrogden.com
|
 |
Paul Woods
Greenhorn
Joined: Nov 15, 2002
Posts: 23
|
|
Thanks, that looks interesting, and I'll look into it further. My primary concern with something this generic though, and perhaps there isn't a good answer, is being allowed to write to the file system when run under a servlet container (ie. Tomcat 4.x). Thanks again, Paul
|
 |
 |
|
|
subject: Store and Read key/value pairs
|
|
|