18

是否有构建 Scala + JavaFX 桌面应用程序的指南或演练?

我很难找到一个好的来源,我正在使用 IntelliJ IDEA 作为 IDE。

即使是最简单的桌面 hello world 示例也会有很大帮助,因为我不知道从哪里开始。

更新:这就是我现在拥有的:

import javafx.application.Application
import javafx.scene.Scene
import javafx.scene.layout.StackPane
import javafx.stage.Stage
import javafx.scene.control.Label

class Test extends Application {
  override def start(primaryStage: Stage) {
    primaryStage.setTitle("Sup!")

    val root = new StackPane
    root.getChildren.add(new Label("Hello world!"))

    primaryStage.setScene(new Scene(root, 300, 300))
    primaryStage.show()
  }
}

object Test {
  def main(args: Array[String]) {
    val t = new Test
    t.start(new Stage)
  }
}

运行它我得到:

线程“主”java.lang.IllegalStateException 中的异常:不在 FX 应用程序线程上;当前线程 = 主线程

如何让它显示带有标签的 hello world 窗口?

4

3 回答 3

34

编写基于 Scala 的 JavaFX 应用程序时需要了解一些事项。

首先,这是一个示例 hello world 应用程序:

import javafx.application.Application
import javafx.scene.Scene
import javafx.scene.layout.StackPane
import javafx.stage.Stage
import javafx.scene.control.Label

class Test extends Application {
  println("Test()")

  override def start(primaryStage: Stage) {
    primaryStage.setTitle("Sup!")

    val root = new StackPane
    root.getChildren.add(new Label("Hello world!"))

    primaryStage.setScene(new Scene(root, 300, 300))
    primaryStage.show()
  }
}

object Test {
  def main(args: Array[String]) {
    Application.launch(classOf[Test], args: _*)
  }
}

运行它你应该得到:

在此处输入图像描述

这是 Java 中的官方 hello world 示例:http: //docs.oracle.com/javafx/2/get_started/hello_world.htm

主要区别在于:

  • 您必须编写所谓的伴随对象def main()来启动实际应用程序。
  • 您必须指定它将在类 Test 的上下文中运行,而不是伴随对象:Application.launch(classOf[Test], args: _*)

如果您只是尝试直接运行应用程序,Application.launch(args : _*)您将收到此错误:

线程“主”java.lang.RuntimeException 中的异常:错误:类 Test$ 不是 javafx.application.Application 的子类

要了解有关 JavaFX 的更多信息,请阅读官方文档:http ://docs.oracle.com/javafx/index.html

于 2012-08-26T13:39:17.493 回答
1

你可以使用这种方式。

 class BuildFx extends Application{

  override def start(primaryStage: Stage): Unit = {
    primaryStage.setTitle("Scala")
    var btn=new Button("Say Hello Scala")
    val root=new StackPane()
    root.getChildren().add(btn)
    primaryStage.setScene(new Scene(root, 300, 300))
    primaryStage.show()

  }



  def launchIt():Unit={
    Application.launch()
  }

}

///////////////////////////////////////////////////////////
object Init{


  def main(args: Array[String]): Unit = {
    val buildFx=new BuildFx
    buildFx.launchIt()

  }
}
于 2017-09-15T20:29:47.787 回答
0

我能够在 scala_swing 中更令人满意地解决这个问题,因为您可以使用参数实例化一个实例,然后在其上调用 main 以稍后启动 Swing。

此解决方案允许在 FX 应用程序中获取参数,但代价是使用静态 var 和可能的其他问题。一个是这肯定不是多线程安全的。

package hack

/**
  * Created by WorkDay on 8/11/16.<br>
  * <br>
  * HelloTest shows a method which allows parameters to be passed
  * into your javaFX application as it is started
  * this allows it to be connected to non-FX code that existed before it.
  *
  * You could also pass a reference to the Application back
  * into the non-FX code if needed.
  */

import javafx.application.Application
import javafx.scene.Scene
import javafx.scene.layout.StackPane
import javafx.stage.Stage
import javafx.scene.control.Label

case class Data(data: String)

object SomeOtherCode extends App {
  HelloTest.launch(Data("brave"), Data("new"))
}

object HelloTest {
  var data1: Data = _
  var data2: Data = _
  def launch(data1: Data, data2: Data) = {
    HelloTest.data1 = data1
    HelloTest.data2 = data2
    Application.launch(classOf[HelloTest])
  }
}

private class HelloTest extends Application {
  val data1: Data = HelloTest.data1
  val data2: Data = HelloTest.data2


  override def start(primaryStage: Stage) {
    primaryStage.setTitle("Sup!")

    val root = new StackPane
    root.getChildren.add(new Label(s"Hello ${data1.data} ${data2.data} world!"))

    primaryStage.setScene(new Scene(root, 300, 300))
    primaryStage.setX(0)
    primaryStage.setY(0)
    primaryStage.show()
  }
}
于 2016-08-11T15:54:06.097 回答