I’ve written a small library to quickly save and load data in a Java app. It’s a simple persistent data store. I plan to use it in some upcoming demos.
Example:
QDS.save("Testing", "A String");
String s = (String)QDS.load("Testing");
Rob Mayhew – Software Developer