我试图在谷歌上找到我的答案,但现在没有结果。
如果它已经解决了,我很抱歉。
我想要做什么:当我的FXML文件加载时,我希望此文件中的imageView从URL中加载图像,该URL包含在包含不同URL的字符串表中,因此我可以切换图像根据我的Gallery1.Selected.ID
变量加载。我尝试过绝对路径和相对路径。
在我的主要:
choice
我的fxml文件控制器:
//url tab of the 2 images
public static String[] images = new String[2];
//variable that include the choice for the image to load in the tab images
public static int choice = 0;
public MainTest() {
images[0] = "C:/Users/Stagiaire ACI/Desktop/Java/ImageTestImage/Assasin.png";
images[1] = "C:/Users/Stagiaire ACI/Desktop/Java/ImageTestImage/Barde.png";
}
我的Fxml文件:
@FXML
private ImageView image;
@FXML
private void initialize() {
Image image = new Image(MainTest.images[MainTest.choice]);
this.image.setImage(image);
}
因此,我可以更改<AnchorPane prefHeight="600.0" prefWidth="900.0" xmlns="http://javafx.com/javafx/9.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.test.view.TestControler">
<children>
<ImageView fx:id="image" fitHeight="310.0" fitWidth="319.0" layoutX="306.0" layoutY="183.0" pickOnBounds="true" preserveRatio="true" />
</children>
</AnchorPane>
来更改加载时的图像。
当我用经典方式加载它时,我的图像效果很好。
甚至不知道是否可能。
谢谢!
编辑:我通过将choice
放在文件网址上来解决了我的问题。
答案 0 :(得分:1)
@
区分了值为FXMLLoader
的网址属性。它们被视为相对于文档。这在fxmls之外不起作用。
绝对文件路径不起作用,因为它们不包含协议。
如果您的图片是资源,则应使用Class.getResource
,如果不是,请使用File.toURI().toURL()
:
images[0] = MainTest.class.getResource("/absolute/package/path/Assasin.png").toExternalForm();
images[1] = new File("C:/Users/Stagiaire ACI/Desktop/Java/ImageTestImage/Barde.png").toURI().toURL().toExternalForm();