试图看看我是否可以在Scala中制作和运行JavaFX程序我遇到了一个奇怪的问题,找不到启动方法......
这是Java代码:
package example;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.*;
import javafx.stage.*;
public class Program extends Application {
@Override
public void start(Stage stage) throws Exception {
Parent root = FXMLLoader.load(getClass().getResource("Test.fxml"));
Scene scene = new Scene(root, 300, 275);
stage.setTitle("FXML Test");
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) {
launch(args);
}
}
直接翻译:
package example
import javafx.application.Application
import javafx.fxml.FXMLLoader
import javafx.scene._
import javafx.stage._
object Program extends Application {
override def start(stage: Stage): Unit = {
val root = FXMLLoader.load(getClass getResource "Test.fxml")
val scene = new Scene(root, 300, 275)
stage setTitle "FXML Test Scala"
stage setScene scene
stage.show
}
def main(args: Array[String]): Unit = launch(args) // this bit fails
}
我选择进行1:1翻译以查看它是否可以开始工作,但就像我之前所说的那样,编译器不知道Scala中的launch
是什么...
那我在这里做错了什么?更重要的是,我该如何解决这个问题?
答案 0 :(得分:2)
在Google+ Scala小组中被问到并感谢Witold Czaplewski获得了以下工作解决方案:
package example
import javafx.application.Application
import javafx.fxml.FXMLLoader
import javafx.scene._
import javafx.stage._
object Program {
def main(args: Array[String]): Unit =
Application.launch(classOf[Program], args: _*)
}
class Program extends Application {
override def start(stage: Stage): Unit = {
val root = FXMLLoader.load(getClass() getResource "Test.fxml")
val scene = new Scene(root, 300, 275)
stage setTitle "FXML Test Scala"
stage setScene scene
stage.show
}
}