// 定義 bufferedreader輸入流來讀取url的響應
in = new bufferedreader(new inputstreamreader(
connection.getinputstream()));
string line;
while ((line = in.readline()) != null)
} catch (exception e)
// 使用finally塊來關閉輸入流
finally
} catch (exception e2)
}return result;
}/**
* 向指定 url 傳送post方法的請求
* * @param url
* 傳送請求的 url
* @param param
* 請求引數,請求引數應該是 name1=value1&name2=value2 的形式。
* @return 所代表遠端資源的響應結果
*/public static string sendpost(string url, string param)
} catch (exception e)
//使用finally塊來關閉輸出流、輸入流
finally
if(in!=null)
}catch(ioexception ex)
}return result;
}
}
java傳送http請求
方法一 1.現將要傳輸的引數轉化為json格式 比如將物件轉為json格式 jsonobject jsonobj jsonobject.fromobject data 2.拼裝url string url url?data jsonobj 3.呼叫以下方法 return json.tostring ...
Java中傳送Http請求Get Post
指定了資料格式必須設定 傳送post請求 引數為 json格式 public static string sendpost2 string url,string param catch exception e finally if in null catch ioexception ex retur...
file,socket,curl傳送http請求
示例一 fclose fp 示例二 html file get contents false,content 示例一 sock fsockopen 127.0.0.1 8001,errno,errstr,1 socket set blocking sock,false 是否阻塞 fwrite soc...