本文介绍了是否可以从纯Java访问BDB?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试访问作为BDB数据库的mozilla文件"cert8.db".我知道其中存在用于语言和Java的绑定,但是我正在尝试构建一个多平台应用程序,因此我认为使用JNI这样的绑定将是一个问题.

I'm trying to access "cert8.db" mozilla file which is a BDB database. I know that there are bindings for languages, Java among them, but I'm trying to build a multiplatform app so I think that using JNI such as this one would be a problem.

谢谢.

推荐答案

您不需要完整的BDB软件包即可读取该文件.看看这个课程,

You don't need full BDB package to read that file. Check out this class,

http://sam.nipl.net/code/mindterm/com/mindbright/bdb/DBHash.java

这篇关于是否可以从纯Java访问BDB?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-14 21:35