我使用JRubyApplet实例得到以下错误:
*Exception in thread "AWT-EventQueue-1"
org.jruby.exceptions.RaiseException: (NoMethodError) undefined method
'drawString' for Java::SunJava2D::SunGraphics2D*
使用以下script.rb:
include Java
JRUBY_APPLET.on_paint do |g|
g.drawString("hello",0,0)
end
我没有成功放置AWT / Graphics
中的任何元素我猜我的代码错了,但我不知道在哪里。