Hi I am trying to launch a simple JavaFx application from Kotlin's REPL to display a chart.
您好我正在尝试从Kotlin的REPL启动一个简单的JavaFx应用程序来显示图表。
The code to launch the app is straightforward, but I get a
启动应用程序的代码很简单,但我得到了一个
java.awt.HeadlessException
at java.awt.GraphicsEnvironment.checkHeadless(GraphicsEnvironment.java:204)
at java.awt.Window.<init>(Window.java:536)
at java.awt.Frame.<init>(Frame.java:420)
at javax.swing.JFrame.<init>(JFrame.java:233)
at com.github.lwhite1.tablesaw.plotting.fx.FxPlot.getJfxPanel(FxPlot.java:13)
at com.github.lwhite1.tablesaw.api.plot.Pareto.initAndShowGUI(Pareto.java:65)
at com.github.lwhite1.tablesaw.api.plot.Pareto.lambda$show$1(Pareto.java:41)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:311)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:756)
at java.awt.EventQueue.access$500(EventQueue.java:97)
at java.awt.EventQueue$3.run(EventQueue.java:709)
at java.awt.EventQueue$3.run(EventQueue.java:703)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$JavaSecurityAccessImpl.doIntersectionPrivilege(ProtectionDomain.java:76)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:726)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:201)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:116)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:105)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:82)
Googling, I found reference to this command, which I ran:
谷歌搜索,我找到了这个命令的参考,我跑了:
System.setProperty("java.awt.headless", "false")
true
but the problem continues, and I get the same error using Swing. How can I display GUI objects from the REPL?
但问题仍然存在,我使用Swing得到了同样的错误。如何从REPL显示GUI对象?
thanks.
1 个解决方案
#1
2
I have been informed by Intellij that this is not currently possible. An issue has been opened: https://youtrack.jetbrains.com/issue/KT-18181.
Intellij告诉我,目前这不可行。问题已经打开:https://youtrack.jetbrains.com/issue/KT-18181。
Update: The issue has been fixed for version 1.1.4. (That took Intellij about 3 days. They ain't foolin' around).
更新:此问题已针对1.1.4版修复。 (这使得Intellij大约3天。他们并非愚蠢)。
#1
2
I have been informed by Intellij that this is not currently possible. An issue has been opened: https://youtrack.jetbrains.com/issue/KT-18181.
Intellij告诉我,目前这不可行。问题已经打开:https://youtrack.jetbrains.com/issue/KT-18181。
Update: The issue has been fixed for version 1.1.4. (That took Intellij about 3 days. They ain't foolin' around).
更新:此问题已针对1.1.4版修复。 (这使得Intellij大约3天。他们并非愚蠢)。