目前,我有一个使用 JavaFX 设置的基本 WebView 和一个需要加载到本地主文件夹中的 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);