画像付きのダイアログを作成するために、このコードをテストしました。
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
ディレクトリに配置しました。しかし、何らかの理由で画像が表示されません。間違いを訂正するのを手伝ってもらえますか?
このコードを置き換えるだけです:
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
String
をImage
クラスに渡すと、4つの異なる方法で処理できます(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
ハッピーコーディング、
カラシュ
これを試して:
img = new Image("/logo.png");
URLを示すプロトコル部分(http:またはfile:)が指定されていない場合、ファイルはデフォルトパッケージにあると想定されます。 com.my.imagesなどの別のパッケージに入れたい場合は、次のような方法でこの情報を追加します。
img = new Image("/com/my/images/logo.png");
Image img = new Image("file:/logo.png");
またはパス付きの方法:
Image img = new Image("file:c:/logo.png");
または
File f = new File("c:\\logo.png");
Image img = new Image(f.toURI().toString());
以下も使用できます:
new Image(file:src/logo.png) //root of project
この機能:
Image image = new Image(getClass()
.getResourceAsStream("ChimpHumanHand.jpg"));
ソースパッケージ(NetBeans IDEのソースパッケージ)が存在するフォルダーにイメージをコピーして貼り付けます。それから
Image image = new Image("a1.jpg");
Image image = new Image("File:a1.jpg");
両方とも機能します。