查找在 WebEngine [[JAVAFX]] 中打开的当前网页的标题

Find the TITLE of current webpage open in WebEngine [[JAVAFX]]

我正在编写一个基于 Javafx 的 Web 浏览器。我想获取当前在 WebEngine 中打开的网页的 TITLE。 谢谢 :)

加载文档后,您可以使用 DOM API 查找标题。 (我通常不喜欢 DOM API,但这是你这样做的方法。)

private String getTitle(WebEngine webEngine) {
    Document doc = webEngine.getDocument();
    NodeList heads = doc.getElementsByTagName("head");
    String titleText = webEngine.getLocation() ; // use location if page does not define a title
    if (heads.getLength() > 0) {
        Element head = (Element)heads.item(0);
        NodeList titles = head.getElementsByTagName("title");
        if (titles.getLength() > 0) {
            Node title = titles.item(0);
            titleText = title.getTextContent();
        }
    }
    return titleText ;
}

只是@James_D 优秀答案的不同实现(少了一些冗长,多了一些 Java 8 风格):

private String getTitle(WebEngine webEngine) {
    Document doc = webEngine.getDocument();
    NodeList heads = doc.getElementsByTagName("head");
    String titleText = webEngine.getLocation(); // use location if page does not define a title
    return getFirstElement(heads)
            .map(h -> h.getElementsByTagName("title"))
            .flatMap(this::getFirstElement)
            .map(Node::getTextContent).orElse(titleText);
}

private Optional<Element> getFirstElement(NodeList nodeList) {
    if (nodeList.getLength() > 0 && nodeList.item(0) instanceof Element) {
        return Optional.of((Element) nodeList.item(0));
    }
    return Optional.empty();
}

更好更好的方法就是使用 WebEngine.getTitle()

这是一个如何使用它的例子:

stage.titleProperty().bind(webView.getEngine().titleProperty());