I want to set a background to a group, which is the root for the scene. I tried this code, but the image does not appear. The image all.jpg is in the same Sourcefolder than the Main.java file. Could anyone help me, thank a lot
Group root = new Group();
String image = Main.class.getResource("all.jpg").toExternalForm();
root.setStyle("-fx-background-image: url('" + image + "') ");