如何在 Ruby 中读取 Perl DB_Files

发布于 2024-08-20 16:29:33 字数 169 浏览 7 评论 0原文

我正在将 Perl 脚本迁移到 Ruby。 Perl 脚本以 DB_HASH 模式使用 DB_File。 如何在 Ruby 中读取此类文件中的所有键和值?

I'm migrating a Perl script to Ruby. The Perl script uses DB_File in DB_HASH mode.
How do I read all the keys and values from such a file in Ruby?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

醉南桥 2024-08-27 16:29:33

我终于意识到 DB_HASH 是一种 Berkeley DB 文件格式。

我的 Ubuntu 机器上没有用于 Ruby 的 libdb,但通过简单的 apt-get 修复了这个问题

apt-get安装libdb4.2-ruby1.8

然后在 Ruby 中

require 'bdb'
db=BDB::Hash.open("test.db")
keyvalues=db.to_hash

I finally realized that DB_HASH is a Berkeley DB file format.

I didn't have libdb for Ruby on my Ubuntu box but that was fixed with a simple apt-get

apt-get install libdb4.2-ruby1.8

Then in Ruby

require 'bdb'
db=BDB::Hash.open("test.db")
keyvalues=db.to_hash
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文