【Android】Http请求

比较简单直接贴代码了。

需要主要的是:

1.    使用POST方式时,传递参数必须使用NameValuePair数组

2.    使用GET方式时,通过URL传递参数,注意写法

3.      通过setEntity方法来发送HTTP请求

4.      通过DefaultHttpClient execute方法来获取HttpResponse

5. 通过getEntity()从Response中获取内容

 

你可能感兴趣的:(android)