在NetBeans上运行JavaFX应用程序时,“URI不是分层的”

时间:2013-01-08 03:05:10

标签: java netbeans javafx-2 javafx

我得到的这个" URI不是分层的"运行JavaFX应用程序时出错。在下面的代码的第4行中抛出异常。你知道我怎么能解决这个问题?

001          { // HISTORY
002              try {
003                  URI uri = MainClass.class.getResource("history.txt").toURI();
004                  File f = new File(uri);
005                  String text = FileUtils.readFileToString(f);
006                  historyTextArea.setText(text);
007              } catch (URISyntaxException | IOException ex) {
008                  Constants.LOGGER.log(Level.SEVERE, ex.toString());
009              }
010          }

URI is not hierarchical
file:/C:/Users/Carlos/Desktop/projetos_java/CodePaster/dist/CodePaster.jar!/com/googlecode/codepaster/gui/about.fxml
  at java.io.File.<init>(File.java:392)
  at com.googlecode.codepaster.gui.AboutWindowController.initialize(AboutWindowController.java:142)
  at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2152)
  at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2028)
  at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2742)
  at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2721)
  at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2707)
  at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2694)
  at javafx.fxml.FXMLLoader.load(FXMLLoader.java:2683)
  at com.googlecode.codepaster.MainClass.start(MainClass.java:97)
  at com.sun.javafx.application.LauncherImpl$5.run(LauncherImpl.java:319)
  at com.sun.javafx.application.PlatformImpl$5.run(PlatformImpl.java:206)
  at com.sun.javafx.application.PlatformImpl$4.run(PlatformImpl.java:173)
  at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
  at com.sun.glass.ui.win.WinApplication.access$100(WinApplication.java:29)
  at com.sun.glass.ui.win.WinApplication$3$1.run(WinApplication.java:73)
  at java.lang.Thread.run(Thread.java:722)

2 个答案:

答案 0 :(得分:2)

问题是你有一个URI引用了一个JAR文件中的资源 File(URI)构造函数无法处理类似的URI。它只能理解文件的URI。

你需要做的是这样的事情:

    String text;
    try (InputStream is = MainClass.class.getResourceAsStream("history.txt")) (
        text = IOUtils.toString(is);
    } catch (...

答案 1 :(得分:0)

对于那些想要加载包含在资源中的FXML文档的人....

Parent page = new FXMLLoader().load(getClass().getResourceAsStream("/fxml/Gui.fxml"));

您的fxml不能包含样式表。