This doesn't seem like an exotic problem, but my colleague and I can't figure it out, despite prodigious research.
A Java project I'm working on requires regular contact with a database, even when offline; SQLite works well in development (when we can point to a particular directory). However, I can't figure out how to include the SQLite database within the Java .jar file for deployment (via Java WebStart).
I have managed to pull information from text files within the .jar (via the BufferedReader class), but for the life of me, I can't configure things for a local SQLite database. The database does not need to be updated at runtime... it is essentially a glorified configuration file.
Using Eclipse, by the way.