1

当我尝试从 Netbeans 打开 .fxml 文件时出现以下错误:

StaffRota.fxml:101: error: 
  java.lang.IllegalArgumentException: Invalid URL or resource not found

我在那个 xml 中的代码是:

<ImageView id="image1.jpg" layoutX="150.0" layoutY="18.0">
      <image>
        <Image url="/theatre/room/allocation/src/misc/image1.jpg" preserveRatio="true" smooth="true" />
      </image>
</ImageView>`

我的 java 应用程序构建和部署良好(并正确呈现图像)。为什么 JavaFX builder 会抱怨?是因为图像在应用程序中吗?

如果我这样做,这就是我得到的-tvf tra.jar:-

C:\Users\..\Documents>jar -tvf tra.jar
     0 Mon Jun 17 19:54:26 BST 2013 META-INF/
   425 Mon Jun 17 19:54:26 BST 2013 META-INF/MANIFEST.MF
     0 Mon Jun 17 19:54:26 BST 2013 theatre/
     0 Mon Jun 17 19:54:26 BST 2013 theatre/room/
     0 Mon Jun 17 19:54:26 BST 2013 theatre/room/allocation/
  .. 
  2563 Mon Jun 17 19:54:26 BST 2013 theatre/room/allocation/src/misc/image1.jpg
  ..
4

1 回答 1

1

通过将 url 更改为修复 @../src/misc/image1.jpg

于 2013-06-18T20:48:48.203 回答