Warm tip: This article is reproduced from serverfault.com, please click

java-无法在JavaFX中加载图像

(java - Cannot load image in JavaFX)

发布于 2013-04-19 07:25:49

我测试了此代码,以创建带有图像的对话框。

final int xSize = 400;
final int ySize = 280;
final Color backgroundColor = Color.WHITE;
final String text = "SQL Browser";
final String version = "Product Version: 1.0";

final Stage aboutDialog = new Stage();
aboutDialog.initModality(Modality.WINDOW_MODAL);

Button closeButton = new Button("Close");

closeButton.setOnAction(new EventHandler<ActionEvent>() {
    @Override
    public void handle(ActionEvent arg0) {
        aboutDialog.close();
    }
});

GridPane grid = new GridPane();
grid.setAlignment(Pos.CENTER);
grid.setHgap(10);
grid.setVgap(10);
grid.setPadding(new Insets(25, 25, 25, 25));

Image img = new Image("logo.png");
ImageView imgView = new ImageView(img);

grid.add(imgView, 0, 0);

grid.add(new Text(text), 0, 1);
grid.add(new Text(version), 0, 2);
grid.add(closeButton, 14, 18);

Scene aboutDialogScene = new Scene(grid, xSize, ySize, backgroundColor);
aboutDialog.setScene(aboutDialogScene);
aboutDialog.show();

我将图像文件放入目录中/src但是由于某些原因,图像无法显示。你能帮我改正我的错误吗?

Questioner
Peter Penzov
Viewed
0
Kalaschni 2019-06-04 15:58:12

只需替换以下代码:

Image img = new Image("logo.png");

有了这个

Image img = new Image("file:logo.png");

Docu参考。 https://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/Image.html

当你将a传递StringImage该类时,可以用四种不同的方式来处理从docu复制):

// The image is located in default package of the classpath
Image image1 = new Image("/flower.png");

// The image is located in my.res package of the classpath
Image image2 = new Image("my/res/flower.png");

// The image is downloaded from the supplied URL through http protocol
Image image3 = new Image("http://sample.com/res/flower.png");

// The image is located in the current working directory
Image image4 = new Image("file:flower.png");

file:前缀是一个简单的URI方案,或者换句话说对方的http:协议分类器。这在文件浏览器或Web浏览器中也适用...;)

作为进一步参考,你可以查看文件URI方案的Wiki页面:https : //en.wikipedia.org/wiki/File_URI_scheme

编码愉快,

卡拉施