使用Http通信主要有get与post两种方式,本文分别介绍使用Http的Get与Post方式与服务器通信;使用HttpClient进行Get或Post通信
详细代码:LearnHttp LearnHttpClient
1.使用Http的Get方法读取数据
使用get方法,调用有道翻译API,获取输入文本的相应翻译
网络请求较耗时,应使用异步操作。在button的cllick事件中新建AsyncTask,复写必须复写的doInBackground方法。
newAsyncTask(){
@Override
protectedStringdoInBackground(String... params) {
在doInBackground方法中,执行http的get操作。创建url对象,打开urlConnection,读写方式读取获得的网络数据,StringBuffer储存。记得读写完成后返回字符串
@Override
protectedStringdoInBackground(String... params) {
try{
//用参数中的url创建url对象
URL url =newURL(params[0]);
URLConnection connection = url.openConnection();
//字节流
InputStream is = connection.getInputStream();
//指定编码方式,字节流转字符流
InputStreamReader isr =newInputStreamReader(is,"UTF-8");
//带缓冲区的reader
BufferedReader br =newBufferedReader(isr);
String line;
StringBuffer sb =newStringBuffer();
while((line = br.readLine()) !=null){
sb.append(line);
}
br.close();
isr.close();
is.close();
//读写完成后返回字符串
returnsb.toString();
}catch(MalformedURLException e) {
e.printStackTrace();
}catch(IOException e) {
e.printStackTrace();
}
重写onPostExecute方法,参数为doInBackground返回的字符串。解析json对象,添加入adapter,为listView设置adapter
try{
JSONObject root =newJSONObject(s);
JSONObject basic = root.getJSONObject("basic");
adapter.add("音标:"+basic.getString("phonetic"));
adapter.add("基本解释:");
JSONArray explains = basic.getJSONArray("explains");
for(inti=0;i
adapter.add(explains.getString(i));
}
lv.setAdapter(adapter);
}catch(JSONException e) {
e.printStackTrace();
}
调用AsyncTask的execute方法,参数为传给doInBackground的url,此处为复制过来的有道翻译的api,在api合适的位置添入输入文本中的内容
execute("http://fanyi.youdao.com/openapi.do?keyfrom=baolvlvLearnHttp&key=1094693720&type=data&doctype=json&version=1.1&q="+et.getText());
get方法将需要传递给服务器的数据放置在url内部http://fanyi.youdao.com/openapi.do?keyfrom=baolvlvLearnHttp&key=1094693720&type=data&doctype=json&version=1.1&q=
?前为真实的url,?后为传递给服务器的数据 ?区分真实网址与传入数据
一般的互联网操作包括浏览器在内都是使用get方法
2.使用Http的post方式与网络交互通信
get方式在url的内部传递数据,post方式通过connection的输出流传递数据,默认以get 方式传递数据
创建HttpURLConnention,将url.openConnention()强制转换为HttpURLConnention
//用参数中的url创建url对象
URL url =newURL(params[0]);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
创建输出流,通过输出流写入向服务器传递的数据
OutputStream os = connection.getOutputStream();
//创建writer
OutputStreamWriter osw =newOutputStreamWriter(os,"UTF-8");
//创建带缓冲区的writer,可以写入行
BufferedWriter bw =newBufferedWriter(osw);
bw.write("keyfrom=baolvlvLearnHttp&key=1094693720&type=data&doctype=json&version=1.1&q="+result);
bw.flush();
设置connection,使connection可以向服务器传递数据,设置请求方式为post
//配置connection,使当前的connection可以向服务器输出数据
connection.setDoOutput(true);
// connection.setDoInput默认为true
connection.setDoInput(true);
//设置connection当前的请求方式
connection.setRequestMethod("POST”);
数据读取的方式与get完全相同
3.使用HttpClient进行get方式通信
HttpClient------------客户端http通信实现库,发送和接收http报文
HttpClient在 android sdk23以上不再支持,如果要使用,在build.gradle(Module:app)中android括号中添加useLibrary
android{
useLibrary‘org.apache.http.legacy’
}
声明HttpClient,在onCreate函数中实例化
//声明HttpClient
HttpClientclient;
//实例化HttpClient
client=newDefaultHttpClient();
自定义readNet用于读取url进行请求,新建异步操作,复写doInBackground方法,执行请求的url
public voidreadNet(String Url){
newAsyncTask(){
@Override
protectedStringdoInBackground(String... params) {
}.execute(Url);
doInBackground()方法中,接收url,创建继承自HttpRequest的HttpGet对象
//创建HttpGet对象,HttpGet继承自HttpRequest
HttpGet get =newHttpGet(urlString);
client执行execute(get)得到HttpResponse对象
//HttpClient执行HttpGet获得HttpResponse对象
HttpResponse response =client.execute(get);
通过response.getEntity()获取请求结果,通过EntityUtils转换为string,返回结果
String value = EntityUtils.toString(response.getEntity());
4.使用HttpClient进行post方式通信
使用post方式通信时,url与参数的值分开写,需要为post对象设置Entity
由于服务器端需要提交表单,所以
调用读取url的方法的参数传入两个字符串,分别为主url和参数键值对中的值
readNet("http://10.0.2.2:8080/MyWebTest/Do?name=",et.getText().toString());
在doInBackground方法中,获取参数数组中的第一个参数(主url),创建HttpPost对象
//获取数组中的第一个参数,为真实的url
String urlString = params[0];
//创建httpPost对象
HttpPost post =newHttpPost(urlString);
创建list对象,范型为BasicNameValuePair,用于储存请求参数的键值对,添入请求的键和参数数组的第二个元素
//基础键值对
List list =newArrayList();
list.add(newBasicNameValuePair("name",params[0]));
创建UrlEncodedFromEntity对象,将list转为Entity的表单对象,为post设置entity
//基础键值对
List list =newArrayList();
list.add(newBasicNameValuePair("name",params[1]));
//将list转为Entity
post.setEntity(newUrlEncodedFormEntity(list));
client执行post获取response,response getEntity()获取entity后,转为String
HttpResponse response =client.execute(post);
String value = EntityUtils.toString(response.getEntity());
网友评论