向Web站點傳送GET請求 POST請求

2021-09-12 05:24:18 字數 828 閱讀 2885

public class testgetpost

//定義bufferedreader輸入流來讀取url的響應

in = new bufferedreader(

new inputstreamreader(conn.getinputstream()));

string line;

while ((line = in.readline())!= null)

}catch(exception e)

//使用finally塊來關閉輸入流

finally

}catch (ioexception ex)

}return result;

}/**

* 向指定url傳送post方法的請求

* @param url 傳送請求的url

* @param param 請求引數,請求引數應該是name1=value1&name2=value2的形式。

* @return url所代表遠端資源的響應

*/public static string sendpost(string url,string param)

}catch(exception e)

//使用finally塊來關閉輸出流、輸入流

finally

if (in != null)

}catch (ioexception ex)

}return result;

}//提供主方法,測試傳送get請求和post請求

public static void main(string args)

}

向Web站點傳送GET請求 POST請求

public class testgetpost 定義bufferedreader輸入流來讀取url的響應 in new bufferedreader new inputstreamreader conn.getinputstream string line while line in.readli...

傳送 GET 和 POST請求

param url 傳送請求的url param param 請求引數 請求引數應該是 name xx pass x public static string sendget string url,string param 定義 bufferedread輸入流來讀取url的響應 bfr new bu...

C 傳送POST 或者GET請求

get請求.cpp 定義控制台應用程式的入口點。user agent mozilla 5.0 windows nt 6.1 rv 32.0 gecko 20100101 firefox 32.0 r n r n 這後面必須加上兩個 r n option login userid hehe userp...