javafx-webview加载本地html
javafx-webview加载本地html
·
javafx-webview加载本地html,html中又加载本地js文件
目录结构
im.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" type="text/css" href="cc.css">
</head>
<body>
1111
<script src="cc.js"></script>
<script>
</script>
</body>
</html>
javafx代码
Platform.runLater(new Runnable() {
@Override
public void run() {
URL url = getClass().getResource("/html/im.html");
webview.getEngine().load(url.toExternalForm());
}
});
更多推荐
已为社区贡献4条内容
所有评论(0)