2012-02-26 40 views
0

1)我怎樣才能發送特定的請求標題,而url.openConnection()?Java url.openConnection()

2)另外,我怎樣才能將請求轉到POST併發送post數據呢?

3)你會推薦什麼文件來進一步瞭解url.openConnection()及其可能性?

謝謝。

+1

你是否甚至費心環顧四周? http://stackoverflow.com/a/2793153/393657 – stryba 2012-02-26 13:59:13

+0

謝謝@scrabble。 – Phil 2012-02-26 15:33:36

回答

2
  1. connection.addRequestProperty(headerName, headerValue);

  2. 你應該叫connection.setRequestMethod("POST");,然後調用和寫入POST請求該流的內容。

  3. google:「java http post example」帶來大量的文檔。這是第一個:http://www.exampledepot.com/egs/java.net/post.html

+0

你好,謝謝。然而,最重要的部分是失蹤。我如何選擇這個請求將被觸發的IP地址?服務器有多個IP地址綁定到它,多個接口。我想爲此請求使用特定的一個。我非常感謝你的幫助,非常感謝你! – Phil 2012-02-26 15:32:39

相關問題