在Windows上使用带有JRuby和JRubyFx的Pry gem的正确方法是什么?
我正在使用JRubyFx(一个JavaFX JRuby绑定 - https://github.com/jruby/jrubyfx),对于我的测试,我使用这个example缩小到最小必要行。
require 'jrubyfx'
require 'pry'
class SimpleFXApplication < JRubyFX::Application
def start(stage)
stage.title = "jrubyfx app"
@ctrlr = SimpleFXController.load_fxml("some_fxml_code_for_ui.fxml", stage)
stage.show
end
end
class SimpleFXController < JRubyFX::Controller
end
SimpleFXApplication.launch
binding.pry
启动应用程序后,控制台不再接受输入了&#34; pry&#34;只有在关闭SimpleFXApplication窗口时才接受输入。
我也尝试过使用Java Threads:
...
binding.pry
Java.java.lang.Thread.new do SimpleFXApplication.launch end
但是,虽然新的线程ID显示为正在运行,但SimpleFXApplication永远不会启动。
我尝试的另一件事是从控制台启动pry然后需要并启动SimpleFXApplication:
jruby -S pry
要求&#39; ./ jrubyfx_demo.rb&#39;
真
SimpleFXApplication.launch
我收到以下错误......
异常运行应用程序:java.net.MalformedURLException:未知 protocol:c java.net.URL。(未知来源) java.net.URL。(未知来源) sun.reflect.NativeConstructorAccessorImpl.newInstance0(本机方法) sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source) sun.reflect.DelegatingConstructorAccessorImpl.newInstance(未知 来源)java.lang.reflect.Constructor.newInstance(未知来源) org.jruby.javasupport.JavaConstructor.newInstanceDirect(JavaConstructor.java:291) org.jruby.java.invokers.ConstructorInvoker.call(ConstructorInvoker.java:104) org.jruby.java.invokers.ConstructorInvoker.call(ConstructorInvoker.java:197) org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:211) org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:217) org.jruby.java.proxies.ConcreteJavaProxy $ 2.call(ConcreteJavaProxy.java:56) org.jruby.runtime.callsite.CachingCallSite.callBlock(CachingCallSite.java:211) org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:217) org.jruby.RubyClass.newInstance(RubyClass.java:862) org.jruby.RubyClass $ INVOKER $ I $ newInstance.call(RubyClass $ INVOKER $ I $ newInstance.gen) org.jruby.internal.runtime.methods.JavaMethod $ JavaMethodZeroOrOneOrTwoOrNBlock.call(JavaMethod.java:295) org.jruby.java.proxies.ConcreteJavaProxy $ 3.call(ConcreteJavaProxy.java:155) org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:346) org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:204) org.jruby.ast.CallTwoArgNode.interpret(CallTwoArgNode.java:59) org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105) org.jruby.ast.BlockNode.interpret(BlockNode.java:71) org.jruby.ast.IfNode.interpret(IfNode.java:118) org.jruby.ast.AttrAssignOneArgNode.interpret(AttrAssignOneArgNode.java:33) org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105) org.jruby.ast.BlockNode.interpret(BlockNode.java:71) org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:75) org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:268) org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:220) org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:366) org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:238) org.jruby.ast.FCallThreeArgNode.interpret(FCallThreeArgNode.java:40) org.jruby.ast.LocalAsgnNode.interpret(LocalAsgnNode.java:123) org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105) org.jruby.ast.BlockNode.interpret(BlockNode.java:71) org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:75) org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:225) org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:204) org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:346) org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:204) org.jruby.ast.CallTwoArgNode.interpret(CallTwoArgNode.java:59) org.jruby.ast.InstAsgnNode.interpret(InstAsgnNode.java:95) org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105) org.jruby.ast.BlockNode.interpret(BlockNode.java:71) org.jruby.evaluator.ASTInterpreter.INTERPRET_METHOD(ASTInterpreter.java:75) org.jruby.internal.runtime.methods.InterpretedMethod.call(InterpretedMethod.java:182) org.jruby.internal.runtime.methods.DefaultMethod.call(DefaultMethod.java:188) org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:326) org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:170) org.jruby.ast.CallOneArgNode.interpret(CallOneArgNode.java:57) org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105) org.jruby.ast.BlockNode.interpret(BlockNode.java:71) org.jruby.ast.RescueNode.executeBody(RescueNode.java:224) org.jruby.ast.RescueNode.interpret(RescueNode.java:119) org.jruby.ast.BeginNode.interpret(BeginNode.java:83) org.jruby.ast.NewlineNode.interpret(NewlineNode.java:105) org.jruby.evaluator.ASTInterpreter.INTERPRET_BLOCK(ASTInterpreter.java:112) org.jruby.runtime.Interpreted19Block.evalBlockBody(Interpreted19Block.java:209) org.jruby.runtime.Interpreted19Block.yield(Interpreted19Block.java:197) org.jruby.runtime.Interpreted19Block.call(Interpreted19Block.java:128) org.jruby.runtime.Block.call(Block.java:89) org.jruby.RubyProc.call(RubyProc.java:261) org.jruby.RubyProc.call(RubyProc.java:213) org.jruby.javasupport.JavaUtil $ 1.call(JavaUtil.java:237) org.jruby.javasupport.util.RuntimeHelpers $ MethodMissingMethod.call(RuntimeHelpers.java:445) org.jruby.gen.InterfaceImpl1014569521.run(组织/ jruby的/根/ InterfaceImpl1014569521.gen:13) com.sun.javafx.application.PlatformImpl $ 5.run(PlatformImpl.java:215) com.sun.javafx.application.PlatformImpl $ 4 $ 1.run(PlatformImpl.java:179) com.sun.javafx.application.PlatformImpl $ 4 $ 1.run(PlatformImpl.java:176) java.security.AccessController.doPrivileged(本机方法) com.sun.javafx.application.PlatformImpl $ 4.run(PlatformImpl.java:176) com.sun.glass.ui.win.WinApplication._runLoop(原生方法) com.sun.glass.ui.win.WinApplication.access $ 100(WinApplication.java:29) com.sun.glass.ui.win.WinApplication $ 3 $ 1.run(WinApplication.java:73) java.lang.Thread.run(未知来源) =&GT;零
我猜它在JrubyFx如何使用线程方面有所作为,或者我不知道它是否是一个影响Pry与JRuby一起使用的更通用的问题。 我想知道更多,如果有人可以分享一些建议,我会很感激。
答案 0 :(得分:2)
SimpleFXApplication.launch在调用Platform.exit之前永远不会返回(关闭窗口会在后台执行此操作)
要执行您要执行的操作,请在启动方法中执行操作,或者在JavaFX启动应用程序后执行其他计时器方法。
作为JRubyFX开发人员之一,我还可以告诉您线程在JRubyFX / JavaFX中的工作原理:
答案 1 :(得分:0)
关于这个:
异常运行应用程序:java.net.MalformedURLException:未知协议:c java.net.URL。(未知来源)java.net.URL。(未知来源)
您的配置文件中是否有指定文件位置的内容?如果是这样,那里的价值是什么?
如果您正在使用“C:[something]”,并且C是您当前的驱动器,我建议您尝试删除“C:”,以防pry被驱动器号弄糊涂。
- 基思