在代码中:

HttpURLConnection connection = (HttpURLConnection)createMerchURL.openConnection();
connection.setRequestMethod("PUT");
connection.addRequestProperty("Name", "Value1");

connection.connect();

..
connection.disconnect();
  • 实际上什么时候打开连接?在 ..createMerchURL.openConnection(); ?还是在 connection.connect();
  • 如何在 connection 对象中设置 URL 并将其与 connection.connect() 一起使用?(因为我对 .openConnection() 不太熟悉)

  • 最后,两者有什么区别吗?

    谢谢..

    最佳答案



    后者。前者只是解析 URL,找到协议(protocol),然后创建 HttpURLConnection 对象。



    你不能。



    你不能。



    坏运气:适应它。

    10-08 18:56