問題
VisualStudioCodeで、JavaのプログラムをCodeRunnerを使用して、
コンパイル実行しようとするとErrorとなる。
ErrorMessageは、「ファイルBasic01.javaで宣言する必要があります」と出てくるが、
添付資料のごとく「Basic01.java」内では正しく宣言されている。
Basic01.java全文
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;
public class Basic01 extends Application
{
@Override
public void start(Stage primaryStage)
{try
{
BorderPane root =
(BorderPane)FXMLLoader.load(getClass().getResource("Basic01.fxml"));
Scene scene = new Scene(root);
scene.getStylesheets().add(getClass().getResource("Basic01.css").toExternalForm());
primaryStage.setTitle("Basic01");
primaryStage.setScene(scene);
primaryStage.show();
}
catch(Exception e) {e.printStackTrace();}
}
public static void main(String[] args)
{
launch(args);
}
}
環境
Windows Pro 10 1903
VisualStudioCode 1.48.0
Javac 1.8.0_192
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/17 09:53
2020/08/17 23:34
2020/08/18 01:42