我想从 Java 打开一个链接我试过这个
public static void main(String[] args) {
try {
//Set your page url in this string. For eg, I m using URL for Google Search engine
String url = "http://myurl.com?id=xx";
java.awt.Desktop.getDesktop().browse(java.net.URI.create(url));
}
catch (java.io.IOException e) {
System.out.println(e.getMessage());
}
}
它工作正常,但问题是查询字符串在该 url 中。我不想将它作为查询字符串传递,因为它是一个密钥。它应该作为隐藏传递给网页请求。我怎样才能做到这一点?