Hello,
I'm trying to open a new browser window from within my Spring Application:
It is not throwing any errors, but it is NOT opening a new browser or tab.Code:String url = "http://www.google.com/"; java.awt.Desktop.getDesktop().browse(java.net.URI.create(url));
And, I know for a fact, the command is getting executed.
Any thoughts?
Thanks in advance!


Reply With Quote
