Read Firefox 3 bookmarks
Asked Answered
N

2

6

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)?

Nuli answered 17/9, 2008 at 8:29 Comment(0)
C
5

You need the SQLite JDBC driver (this page explains how to run queries on a SQLite database using that driver from within Java).

Crural answered 17/9, 2008 at 8:34 Comment(0)
A
2

I don't know why you need NOT to use a JDBC driver, but there's another possible "solution" depending on your software requirements. In FF3, type in the address bar about:config

Alter the value of property: browser.bookmarks.autoExportHTML to true.

This will export your bookmarks in an HTML whenever you close FF. You can then read the HTML. It may or may not solve your problem....

Atwitter answered 17/9, 2008 at 14:15 Comment(1)
Although is definitely a good alternative. You only get what Firefox exports. If you connect to the database, you can get everything you like.Advection

© 2022 - 2024 — McMap. All rights reserved.