import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.io.UnsupportedEncodingException; import java.net.URL; import java.net.URLConnection; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.Map.Entry; public class HttpSender { public static void main(String[] args) { } /** * 向指定URL發送GET方法的請求 */ public static String sendGet(String url, String param) throws UnsupportedEncodingException, IOException { return sendGet(url, param, null); } public static String sendGet(String url, String param, Map<String, String> header) throws UnsupportedEncodingException, IOException { String result = ""; BufferedReader in = null; String urlNameString = url + "?" + param; URL realUrl = new URL(urlNameString); // 打開和URL之間的連接 URLConnection connection = realUrl.openConnection(); //設置超時時間 connection.setConnectTimeout(5000); connection.setReadTimeout(15000); // 設置通用的請求屬性 if (header!=null) { Iterator<Entry<String, String>> it =header.entrySet().iterator(); while(it.hasNext()){ Entry<String, String> entry = it.next(); System.out.println(entry.getKey()+":::"+entry.getValue()); connection.setRequestProperty(entry.getKey(), entry.getValue()); } } connection.setRequestProperty("accept", "*/*"); connection.setRequestProperty("connection", "Keep-Alive"); connection.setRequestProperty("user-agent","Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)"); // 建立實際的連接 connection.connect(); // 獲取所有響應頭字段 Map<String, List<String>> map = connection.getHeaderFields(); // 遍歷所有的響應頭字段 for (String key : map.keySet()) { System.out.println(key + "--->" + map.get(key)); } // 定義 BufferedReader輸入流來讀取URL的響應,設置utf8防止中文亂碼 in = new BufferedReader(new InputStreamReader(connection.getInputStream(), "utf-8")); String line; while ((line = in.readLine()) != null) { result += line; } if (in != null) { in.close(); } return result; } /** * 向指定 URL 發送POST方法的請求 */ public static String sendPost(String url, String param) throws UnsupportedEncodingException, IOException { return sendPost(url, param, null); } public static String sendPost(String url, String param, Map<String, String> header) throws UnsupportedEncodingException, IOException { PrintWriter out = null; BufferedReader in = null; String result = ""; URL realUrl = new URL(url); // 打開和URL之間的連接 URLConnection conn = realUrl.openConnection(); //設置超時時間 conn.setConnectTimeout(5000); conn.setReadTimeout(15000); // 設置通用的請求屬性 if (header!=null) { for (Entry<String, String> entry : header.entrySet()) { conn.setRequestProperty(entry.getKey(), entry.getValue()); } } conn.setRequestProperty("accept", "*/*"); conn.setRequestProperty("connection", "Keep-Alive"); conn.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)"); // 發送POST請求必須設置如下兩行 conn.setDoOutput(true); conn.setDoInput(true); // 獲取URLConnection對象對應的輸出流 out = new PrintWriter(conn.getOutputStream()); // 發送請求參數 out.print(param); // flush輸出流的緩沖 out.flush(); // 定義BufferedReader輸入流來讀取URL的響應 in = new BufferedReader( new InputStreamReader(conn.getInputStream(), "utf8")); String line; while ((line = in.readLine()) != null) { result += line; } if(out!=null){ out.close(); } if(in!=null){ in.close(); } return result; } }