i want from java desktop application open browser with some url ("http:www.google.com") for example. But i don't want that this url will be visible in browser. Is it possible to hide line with url somehow?
i found how to open browser: http://www.mkyong.com/java/open-browser-in-java-windows-or-linux/
but not how to hide line with url. Is this possible?
EDIT:
i get answer that is possible from JS: How to hide address bar in Firefox using javascript window.open
and i also open now browser like
...
import java.awt.Desktop;
...
Desktop desktop = Desktop.getDesktop();
desktop.browse(new URI(''a_url"));
...
can i integrate JS in it that will open popup without address bar?