LevelDB支持java吗?
我想知道LevelDB是否支持java? 我在哪里可以获得 LevelDB。 http://code.google.com/p/leveldb/ 下没有文件
I want to know if LevelDB supports java ?
Where can i get the LevelDB. There are no files under http://code.google.com/p/leveldb/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用 https://github.com/fusesource/leveldbjni java 库,它通过 JNI 为您提供了 LevelDB 的 Java API。
还有 LevelDB 的纯 Java 实现,位于 https://github.com/dain/leveldb
JNI 包装的和纯的Java 实现实现相同的接口类,因此在两者之间切换非常容易。
You can use the https://github.com/fusesource/leveldbjni java library which gives you a Java API to LevelDB via JNI.
There is also a Pure Java implementation of LevelDB available at https://github.com/dain/leveldb
Both the JNI wrapped and pure Java implementation implement the same interface classes so it's really easy to switch between the two.
LevelDB 目前不附带 JNI 绑定,但您可以通过 SWIG 等将您自己的 JNI 绑定包装在文件 db/ch 周围。
LevelDB currently does not ship with JNI bindings, but you can wrap your own JNI binding around the file db/c.h via SWIG and the like.
您可以尝试leveldb-java。这是 LevelDB 的纯 Java 版本。
You can have a try of leveldb-java. This is a pure Java version of LevelDB.
从源码来看,我可以说它不支持java。
对于源,请使用
svn checkout http://leveldb.googlecode.com/svn/trunk/< /a> leveldb-只读
From looking at the source, i can say that it doesn't support java.
For the source use
svn checkout http://leveldb.googlecode.com/svn/trunk/ leveldb-read-only