JavaFX Web 查看器是否支持从一串 html 代码加载网页?我的代码目前在下面的场景 1 下运行。但是,我需要将 webFile 分成两部分(top & bot),然后在中间插入一串 html。最终结果通过 webviewer 加载。请参阅 #2 了解我的意图(它不起作用)。谁能建议我如何才能做到这一点?谢谢!
1.
String webFileStr = (new File(webFile)).toURI().toURL().toString();
webEngine.load(webFileStr);
2.
String webStr = topSlice + data + botSlice;
webEngine.load(webStr);
最佳答案
webView.getEngine().loadContent("<html>hello, world</html>", "text/html");
Javadoc 说明:
正如 Hiux 在评论中建议的那样: