简体   繁体   中英

How to get javafx webview url

I am trying to make a web browser with javafx, but I need to get the url of the website that the user is on. I tryed using getDocument() , but that didn't work, and there's no getUrl() method. Will you tell me how I can accomplish this.

Just to add onto Zephyr's answer I would like to give you the code you need:

browserName.getEngine().load("https://www." + urlFieldName.getText());
urlFieldName.setText(browserName.getEngine().getLocation());

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM