1

我需要一种在浏览器上打开网页的方法(如默认),唯一的问题是我需要打开浏览器发送一个以如下参数结尾的 url:index.html?json=something

到目前为止,我在网上只看到过这种方法:

File f = new File("index.html");
        URI uri = f.toURI();
        desk.browse(uri);

但是这种方式我无法打开带有参数的网页,并且我仍然需要找到一种在程序执行期间刷新浏览器的方法。

有人能帮我吗?

4

1 回答 1

1

这应该工作

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);
于 2013-06-22T14:21:07.567 回答