阅读 Firefox 3 书签

发布于 2024-07-04 06:31:56 字数 140 浏览 9 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浪漫人生路 2024-07-11 06:31:56

您需要 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).

凉宸 2024-07-11 06:31:56

我不知道为什么您不需要使用 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....

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文