0

正如标题所述,我试图简单地使用 URLConnection 向网络服务器发送 HTTP 请求,但是当我尝试运行脚本时,它不会发送请求,也不会给我一个错误。

代码:

public static URLConnection connection;
new URL("http://website.com/dostuff.php?whatever=" + whatever).openConnection();
4

1 回答 1

1

URL.openConnection不会立即创建连接。它仅在您调用需要连接的方法后才连接。例如:

URL url = ...;
InputStream in = url.openStream(); // connection happens here
// you can now read the output from in
于 2013-07-22T20:27:58.880 回答