Hyperlink WebView HTMLEditor
Hyperlink
Hyperlink hyperlink = new Hyperlink("www.baidu.com");
hyperlink.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
HostServices hostServices = getHostServices();
hostServices.showDocument(hyperlink.getText());
}
});
WebView

WebView webView = new WebView();
WebEngine engine = webView.getEngine();
engine.load("http://www.baidu.com");
webView.prefWidthProperty().bind(root.widthProperty());
webView.prefHeightProperty().bind(root.heightProperty());
WebHistory history = engine.getHistory();
ObservableList<Entry> historyEntries = history.getEntries();
history.go(1);
history.go(-1);
HTMLEditor

HTMLEditor htmlEditor = new HTMLEditor();
htmlEditor.setPrefSize(600, 500);
String htmlText = htmlEditor.getHtmlText();