Skip to content

Instantly share code, notes, and snippets.

@mbastian
Created September 15, 2015 14:24
Show Gist options
  • Save mbastian/acd46a90d6ca1faa70b2 to your computer and use it in GitHub Desktop.
Save mbastian/acd46a90d6ca1faa70b2 to your computer and use it in GitHub Desktop.
Read PalDB store example
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