java - Can you communicate with a browser window, after opening it with a JavaFX app? -
my question title indicates.
i have javafx app, , need open browser window. after opening it, want able communicate browser app opened it.
for example, if opened default browser window this:
uri u = new uri(url); java.awt.desktop.getdesktop().browse(u);
three options:
through javascript
using javascript, , window name access window.
e.g. see: https://stackoverflow.com/a/16525481/1688441
through ajax calls , server/database
as user answered, communication done intermediate server.
third party library
the other thing can think of using 3rd party library window within operating system, though not more can suggest.
Comments
Post a Comment