阅读 Firefox 3 书签
Firefox 3 将书签存储在 sqlite 数据库中。 有几个可用的 hack sqlite java 库。 有没有办法破解java中的sqlite数据库(不使用库)以可靠地读取书签? 有人知道sqlite DB是如何存储和以编程方式访问的(从java)?
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)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要 SQLite JDBC 驱动程序(本页介绍了如何使用该驱动程序在 SQLite 数据库上运行查询在 Java 中)。
You need the SQLite JDBC driver (this page explains how to run queries on a SQLite database using that driver from within Java).
我不知道为什么您不需要使用 JDBC 驱动程序,但根据您的软件要求,还有另一种可能的“解决方案”。 在 FF3 中,在地址栏中键入 about:config
将属性值: browser.bookmarks.autoExportHTML 更改为 true。
每当您关闭 FF 时,这都会以 HTML 格式导出您的书签。 然后您可以阅读 HTML。 它可能会也可能不会解决您的问题......
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....