Read Firefox 3 bookmarks
问题 Firefox 3 stores the bookmarks in a sqlite database. There are several hacked sqlite java libraries available. Is there a way to hack the sqlite database in java(not using libraries) to read bookmarks reliably? Does someone know how the sqlite DB is stored and access programmatically (from java)? 回答1: You need the SQLite JDBC driver (this page explains how to run queries on a SQLite database using that driver from within Java). 回答2: I don't know why you need NOT to use a JDBC driver, but