标签(空格分隔): 网络框架(基础知识)
---
在此输入正文
Android中的网络请求涉及到请求网络和网络通讯,网络通讯自然就要遵守http协议,那么这就要记录一下网络通信中的GET和POST(ps:PUT方法与POST相似,DELETE与GET相似,封装上就会有体现如果你的代码有封装的话)
Http请求方式Get与Post的简介
先来了解Http协议:Http(HyperText Transfer Protocol超文本传输协议)是一个设计来使客户端和服务器顺利进行通讯的协议。
HTTP在客户端和服务器之间以request-response protocol(请求-回复协议)工作。
简单来说呢,Get与Post就是基于http协议的网络数据交互方式。
(引用)
作者:AlicFeng
链接:https://www.jianshu.com/p/ba6998e0dfa7
來源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
Get与Post的主要区别
在Android开发的过程中,该如何选择Http的Get还是Post来进行通讯呢?那就详细探索他们之间的差异。
1.get通常是从服务器上获取数据,post通常是向服务器传送数据。
2.get是把参数数据队列加到表单的 ACTION属性所指的URL中,值和表单内各个字段一一对应,在URL中可以看到,实际上就是URL拼接方式。post是通过HTTPpost机制,将表单内各个字段与其内容放置在HTML HEADER内一起传送到ACTION属性所指的URL地址。
3.对于get方式,服务器端用 Request.QueryString获取变量的值,对于post方式,服务器端用Request.Form获取提交的数据。
4.get 传送的数据量较小,不能大于1KB[IE,Oher:4]。post传送的数据量较大,一般被默认为不受限制。但理论上,IIS4中最大量为80KB,IIS5中为100KB。
5.get安全性非常低,post安全性较高。
Android如何使用Get与Post协议
GET的封装
private static HttpURLConnection get(Request request) throws AppException {
try {
request.checkIfCancelled();//绑定Activity的生命周期请求的方法
HttpURLConnection connection = (HttpURLConnection) new URL(request.url).openConnection();
connection.setRequestMethod(request.method.name());
connection.setConnectTimeout(15 * 3000);
connection.setReadTimeout(15 * 3000);
addHeader(connection, request.headers);//添加头部(Get可以省略)
request.checkIfCancelled();
return connection;
} catch (InterruptedIOException e) {
throw new AppException(AppException.ErrorType.TIMEOUT, e.getMessage());
} catch (IOException e) {
throw new AppException(AppException.ErrorType.SERVER, e.getMessage());
}
}
POST的请求
private static HttpURLConnection post(Request request,OnProgressUpdatedListener listener) throws AppException {
HttpURLConnection connection = null;
OutputStream os = null;//首先POST是流的传输
try {
request.checkIfCancelled();
connection = (HttpURLConnection) new URL(request.url).openConnection();
connection.setRequestMethod(request.method.name());
connection.setConnectTimeout(15 * 3000);
connection.setReadTimeout(15 * 3000);
connection.setDoOutput(true);//支持OutPutStream
addHeader(connection, request.headers);
request.checkIfCancelled();
os = connection.getOutputStream();
if (request.filePath != null){//这些是对文件上传的封装判断可以忽略
UploadUtil.upload(os, request.filePath);
}else if(request.fileEntities != null){
UploadUtil.upload(os,request.content,request.fileEntities,listener);
}else if(request.content != null){//这一条是关键
os.write(request.content.getBytes());//这一条也是关键
}else {
throw new AppException(AppException.ErrorType.MANUAL,"the post request has no post content");
}
request.checkIfCancelled();
} catch (InterruptedIOException e) {
throw new AppException(AppException.ErrorType.TIMEOUT, e.getMessage());
} catch (IOException e) {
throw new AppException(AppException.ErrorType.SERVER, e.getMessage());
}finally {
try {
os.flush();
os.close();
} catch (IOException e) {
throw new AppException(AppException.ErrorType.IO, "the post outputstream can't be closed");
}
}
return connection;//返回的是httpUrlConnection好统一处理
}
基础用的是HttpUrlConnecation(Java支持的)也可以用HttpClient(android 2.2以前用的)------>看到这里的朋友如果不太了解httpUrlConnecation和httpClient的可以自行百度一下,再说一下完成架构是需要扎实的基础知识做后盾的然后才是技巧
在这里大家应该粗略的了解了GET和POST的方法的本质区别,有区别然后体现在代码里面,还是应该看一下底层的代码,一下子去看okhtttp和retorfit的话会很懵逼的,只知道用而不知道为什么和怎样实现的终究是初级程序员的。
与大家一起提升,如有错误欢迎指正