如何在 JavaFx 中获取 webview 控件的文档高度?
问问题
3920 次
2 回答
5
您可以使用以下调用获取 WebView 中显示的文档的高度:
webView.getEngine().executeScript(
"window.getComputedStyle(document.body, null).getPropertyValue('height')"
);
一个完整的应用程序来演示调用用法:
import javafx.application.Application;
import javafx.beans.value.*;
import javafx.scene.Scene;
import javafx.scene.web.*;
import javafx.stage.Stage;
import org.w3c.dom.Document;
public class WebViewHeight extends Application {
@Override public void start(Stage primaryStage) {
final WebView webView = new WebView();
final WebEngine engine = webView.getEngine();
engine.load("http://docs.oracle.com/javafx/2/get_started/animation.htm");
engine.documentProperty().addListener(new ChangeListener<Document>() {
@Override public void changed(ObservableValue<? extends Document> prop, Document oldDoc, Document newDoc) {
String heightText = webView.getEngine().executeScript(
"window.getComputedStyle(document.body, null).getPropertyValue('height')"
).toString();
double height = Double.valueOf(heightText.replace("px", ""));
System.out.println(height);
}
});
primaryStage.setScene(new Scene(webView));
primaryStage.show();
}
public static void main(String[] args) { launch(args); }
}
上述答案的来源:Oracle JavaFX 论坛 WebView 配置线程。
相关功能的基于 Java 的 API 的相关问题跟踪器请求:
于 2013-04-01T22:39:41.560 回答
0
这就是你要找的:
Double.parseDouble(webView.getEngine().executeScript("document.height").toString())
于 2016-03-18T14:53:59.363 回答