在FXML ImageView中加载图像?

时间:2017-09-27 07:40:35

标签: javafx fxml

我的FXML中有以下图片:

UnityPlayerActivity

我的xml文件在里面:

        <ImageView>
            <image>
                <Image url="@/Icons/myImage.png" />
            </image>
        </ImageView>

另一方面,我的图标在里面:

src/Core/View

为什么我在类路径中找不到错误无效资源...?我不确定我做错了什么或如何使路径工作。

1 个答案:

答案 0 :(得分:1)

您需要将url="@/Icons/myImage.png"更改为url="@Icons/myImage.png",删除最初的/