目前我有一个基本的WebView设置JavaFX和一个html文件,我需要在我的本地主文件夹中加载。但是,当我将URL对象设置为主文件夹并尝试使用WebEngine的加载函数加载该URL时,页面不会加载。页面content.html非常好。这是我的代码:
String contentURL = new URL("file://" + System.getProperty("user.home") + "/content.html").toExternalForm();
webEngine.load(contentURL);
System.out.println(contentURL);