问题
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
来源:https://stackoverflow.com/questions/14699949/how-can-i-import-all-packages-in-jruby