Created
September 15, 2015 14:24
-
-
Save mbastian/acd46a90d6ca1faa70b2 to your computer and use it in GitHub Desktop.
Read PalDB store example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
StoreReader reader = PalDB.createReader(new File("store.paldb")); | |
String val1 = reader.get("foo"); | |
int[] val2 = reader.get(1213); | |
reader.close(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment