使用 Builder 在 JRuby 中写入 XML 文件

发布于 2025-01-02 07:08:37 字数 547 浏览 1 评论 0原文

我正在尝试使用 Builder 写入 XML 文件,但在启动程序时似乎找不到 Builder。我使用 gem install builder 安装了它,然后在我的文件中使用了以下内容,但它无法启动:

require 'rubygems'
require_gem 'builder'

def product_xml
    builder = Builder::XmlMarkup.new("", 2)
    puts builder.person {
        name("Selene")
        id("1")
        x("2");
        y("3");
    }
end

我收到的错误是:

LoadError: no such file to load --红宝石 需要在 org/jruby/RubyKernel.java:1038 (root) 位于 C:\Users\Ron\Dropbox\...\server\.\data\plugins\cmd-dev\dev.r b:2

I'm trying to write to an XML file using Builder but cannot seem to find Builder when I start up my program. I installed it using gem install builder and then used the following in my file, but it does not start up:

require 'rubygems'
require_gem 'builder'

def product_xml
    builder = Builder::XmlMarkup.new("", 2)
    puts builder.person {
        name("Selene")
        id("1")
        x("2");
        y("3");
    }
end

The error that I am getting is:

LoadError: no such file to load -- rubygems
require at org/jruby/RubyKernel.java:1038
(root) at C:\Users\Ron\Dropbox\...\server\.\data\plugins\cmd-dev\dev.r
b:2

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

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

发布评论

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

评论(1

吹泡泡o 2025-01-09 07:08:37

要在 JRuby 环境中安装 gem,您必须使用 jruby -S gem,而不仅仅是 gem(如果您不使用 RVM)。

因此,您应该使用jruby -S gem install builder来安装Builder。安装后,您应该只使用 require 'builder',而不是 require_gem 'builder'

To install gems inside the JRuby enviroment you must use jruby -S gem, not just gem (if you are not using RVM).

So you should install Builder with jruby -S gem install builder. Once you have installed it, you should just use require 'builder', not require_gem 'builder'.

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