How can I import all packages in jruby?

2020-02-12 06:24发布

问题:

In java you can do something like this, to include all packages under java namespace.

import java.*;

At https://github.com/jruby/jruby/wiki/CallingJavaFromJRuby They suggest using include_package or import. I also tried java_package and java_import. Is there a way to import like this or do you just require the pacakges that you need.

回答1:

require 'java'

module JavaUtil
  include_package "java.util"
end

JavaUtil::Date.new


标签: java ruby jruby