无法在JavaFX 8中加载CSS文件

时间:2018-06-20 11:25:06

标签: css javafx

Scene listenMenu = new Scene(root, 250, 272);
listenMenu.getStylesheets().add("styles.css");

这始终对我加载CSS文件有用,但是在IntelliJ小更新后,它给了我这个错误:

Juni 20, 2018 1:16:45 NACHM. com.sun.javafx.css.StyleManagerloadStylesheetUnPrivileged WARNING: Resource "styles.css" not found.

我试图在此处寻找解决方案,但没有任何效果。像这样使用url和toEx​​ternalForm():

listenMenu.getStylesheets().add(getClass().getResource("src/main/resources/styles.css").toExternalForm());

引发此异常:

    Exception in Application start method
Exception in thread "main" java.lang.reflect.InvocationTargetException
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:564)
    at java.base/sun.launcher.LauncherHelper$FXHelper.main(LauncherHelper.java:941)
Caused by: java.lang.RuntimeException: Exception in Application start method
    at javafx.graphics/com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:973)
    at javafx.graphics/com.sun.javafx.application.LauncherImpl.lambda$launchApplication$2(LauncherImpl.java:198)
    at java.base/java.lang.Thread.run(Thread.java:844)
Caused by: java.lang.NullPointerException
    at HDMStuttgart.GUI.ListGUI.start(ListGUI.java:37)
    at javafx.graphics/com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$9(LauncherImpl.java:919)
    at javafx.graphics/com.sun.javafx.application.PlatformImpl.lambda$runAndWait$11(PlatformImpl.java:449)
    at javafx.graphics/com.sun.javafx.application.PlatformImpl.lambda$runLater$9(PlatformImpl.java:418)
    at java.base/java.security.AccessController.doPrivileged(Native Method)
    at javafx.graphics/com.sun.javafx.application.PlatformImpl.lambda$runLater$10(PlatformImpl.java:417)
    at javafx.graphics/com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:96)
    at javafx.graphics/com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
    at javafx.graphics/com.sun.glass.ui.win.WinApplication.lambda$runLoop$3(WinApplication.java:175)
    ... 1 more

项目结构: -主要 -Java --- HDMStuttgart ---- GUI ----- ListGui.java <-Java文件

-资源 --- styles.css <-css文件

任何建议都会得到高度赞赏!

2 个答案:

答案 0 :(得分:1)

尝试:创建一个Java文件

import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;

public class HelloStyledWorld extends Application {

    @Override
    public void start(Stage primaryStage) {
        Button btn = new Button();
        btn.setText("Say 'Hello Styled World'");
        btn.setOnAction(new EventHandler<ActionEvent>() {

            @Override
            public void handle(ActionEvent event) {
                System.out.println("Hello Styled World!");
            }
        });

        StackPane root = new StackPane();
        root.getChildren().add(btn);

        Scene scene = new Scene(root, 300, 250);
        scene.getStylesheets().add(getClass().getResource("style.css").toExternalForm());

        primaryStage.setTitle("Hello Styled World!");
        primaryStage.setScene(scene);
        primaryStage.show();
    }

    public static void main(String[] args) {
        launch(args);
    }
}

style.class .java 文件放在同一package中(如果使用的是文件,则放入相应的资源文件夹中。

验证build是否将正确的CSS文件包含到输出文件夹中。 你可以

System.out.println(getClass().getResource("style.css").toExternalForm());

控制台查看JavaFX在哪里搜索css,并检查css是否在那里可用。

答案 1 :(得分:0)

如果您使用的是scene.getStylesheets().add("com/whatever/stylesheet.css"); 您必须链接它所在的整个路径,包括src文件夹之后的包,而不是src文件夹本身。

如果您使用的是scene.getStylesheets().add(getClass().getResource("stylesheet.css").toExternalForm());

css文件必须与您要加载的java文件位于同一目录中。您只需要提供文件名即可。

如果要在resource文件夹的src文件夹中进行创建,请执行此操作。如果没有,我不知道如何。