Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要一种在浏览器上打开网页的方法(如默认),唯一的问题是我需要打开浏览器发送一个以如下参数结尾的 url:index.html?json=something
到目前为止,我在网上只看到过这种方法:
File f = new File("index.html"); URI uri = f.toURI(); desk.browse(uri);
但是这种方式我无法打开带有参数的网页,并且我仍然需要找到一种在程序执行期间刷新浏览器的方法。
有人能帮我吗?
这应该工作
URI uri = URI.create("http://some-site.com/?json=something"); //or also URI uri = new URL("http://some-site.com/?json=something").toURI(); desk.browse(uri);