我试图在JavaFX应用程序中添加图像,但由于某种原因,它没有检测到文件或没有识别路径。具体错误是
IllegalArgumentException:找不到无效的网址或资源' ...
以下是相关代码:
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.HBox;
import javafx.scene.layout.Pane;
import javafx.stage.Stage;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
public class DisplayThreeCards extends Application {
@Override
public void start(Stage primaryStage) {
Pane pane = new HBox();
Image card1 = new Image("image/card/1.png");
pane.getChildren().add(new ImageView(card1));
Scene scene = new Scene(pane);
primaryStage.setTitle("Display Three Cards");
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
Application.launch();
}
}
图像文件夹位于我的src文件夹中,与我的java文件一起。图像文件夹内部是卡片文件夹,因此位置正确。