I get the same error again and again when i try to add images to my JavaFX. Error: at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) (more lines follow). It must be related to the path to the images that I specified. I have already read through the general "path" tutorial on StackOverflow without success. I just want to make a simple scrollBar which enables scrolling through some Images i added to a VBox.
Heres my directory:
import javafx.application.Application;
import javafx.beans.value.ChangeListener;
import javafx.beans.value.ObservableValue;
import javafx.collections.FXCollections;
import javafx.event.ActionEvent;
import javafx.event.Event;
import javafx.event.EventHandler;
import javafx.geometry.Insets;
import javafx.geometry.Orientation;
import javafx.geometry.Pos;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.effect.DropShadow;
import javafx.scene.effect.Shadow;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.GridPane;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.scene.paint.Color;
import javafx.scene.text.Font;
import javafx.stage.Stage;
public class Scrollbar3 extends Application {
    // Variablen
    final ScrollBar scrollbar = new ScrollBar();
    final String[] images = {
            "Bilder/bild0.jpg", // 0
            "Bilder/bild1.jpg",
            "Bilder/bild2.jpg",
            "Bilder/bild3.jpg",
            "Bilder/bild4.jpg",
    };
    
    DropShadow shadow = new DropShadow();
    final VBox vbox = new VBox();
    @Override
    public void start(Stage primaryStage) throws Exception {
        // Scene / root
        Group root = new Group();
        Scene scene = new Scene(root, 400, 400);
        root.getChildren().addAll(vbox, scrollbar);
        
        // Effekt
        shadow.setColor(Color.BLACK);
        shadow.setOffsetX(10);
        shadow.setOffsetY(10);
        // VBox
        vbox.setLayoutX(5);
        vbox.setSpacing(10);
        vbox.setPadding(new Insets(20));
        // Scrollbar
        scrollbar.setLayoutX(scene.getWidth() - scrollbar.getWidth());
        scrollbar.setOrientation(Orientation.VERTICAL);
        scrollbar.setPrefHeight(400);
        scrollbar.setMax(2000);
        // Bilder
        for(int i = 0; i < images.length; i++) {
            final ImageView imageView = new ImageView(new Image(images[i]));
            imageView.setEffect(shadow);
            vbox.getChildren().add(imageView);
        }
        // Eventhanlding / Listener
        scrollbar.valueProperty().addListener(new ChangeListener<Number>() {
            @Override
            public void changed(ObservableValue<? extends Number> observableValue, Number oldValue, Number newValue) {
                vbox.setLayoutY(-newValue.doubleValue());
                
            }
        });
        // Stage
        primaryStage.setScene(scene);
        primaryStage.show();
    }
    public static void main(String[] args) {
        launch(args);
    }
}


 
    