Android自定义网络连接工具类HttpUtil
程序员文章站
2022-06-19 19:05:40
本文实例为大家分享了android网络连接工具类httputil的使用方法,供大家参考,具体内容如下
该工具实现了发送get和post请求,请求的结果以string字...
本文实例为大家分享了android网络连接工具类httputil的使用方法,供大家参考,具体内容如下
该工具实现了发送get和post请求,请求的结果以string字符串的形式返回,比较适合接收服务器端发送过来的json字符串数据
get方法适合从服务器端获取数据
post方法适合发送数据到服务器端
使用的时候直接调用get或post方法就好
get方法传递一个url请求
post方法传递一个url请求和要发送到服务器端的数据params
接收数据后返回的是一个string字符串
httputil.java
public class httputil{ /** * post方法提交http请求,返回请求的结果 * * @param url * @param params * @return 请求结果 * @throws ioexception */ public static string sendpost(string url, string params) throws ioexception { stringbuffer result = new stringbuffer(); // 创建url对象 url _url = new url(url); // 创建http连接 /** * 使用.openconnection()方法实例化一个urlconnection对象 * */ httpurlconnection conn = (httpurlconnection) _url.openconnection(); // 以下设置网络连接的相关参数 /* 使用post方法进行请求传递时,必须定义setdoinput和setdooutput方法 */ // 设置输入可用 conn.setdoinput(true); // 设置输出可用 conn.setdooutput(true); // 设置不使用缓存 conn.setusecaches(false); // 设置连接超时的时间 - 5s conn.setconnecttimeout(5000); // 设置读取超时的时间 - 5s conn.setreadtimeout(5000); // 设置http请求的方法 - post conn.setrequestmethod("post"); // 设置http请求属性 - 连接方式:保持 conn.setrequestproperty("connection", "keep-alive"); // 设置http请求属性 - 字符集:utf-8 conn.setrequestproperty("charset", "utf-8"); // 设置http请求属性 - 传输内容的类型 - 简单表单 conn.setrequestproperty("content-type", "application/x-www-form-urlencoded"); // 设置http请求属性 - 传输内容的长度 conn.setrequestproperty("content-length", string.valueof(params.length())); // 设置http请求属性 - 用户代理 conn.setrequestproperty("user-agent", "mozilla/5.0 (windows nt 6.3; wow64; rv:27.0) gecko/20100101 firefox/27.0"); // 发送参数 ,采用字符流发送数据 printwriter pw = new printwriter(conn.getoutputstream()); pw.write(params); pw.flush(); pw.close(); // 获取返回的结果 if (200 == conn.getresponsecode()) {// 判断状态码 // 读取服务器返回的 结果 - 字符流 bufferedreader br = new bufferedreader(new inputstreamreader( conn.getinputstream())); // 每次读取一行 string line; while((line = br.readline()) != null){ result.append(line); } } // 关闭http连接 conn.disconnect(); return result.tostring(); } /** * get方法提交http请求,返回请求的结果 * @param url * @return 请求的结果 * @throws ioexception */ public static string sendget(string url) throws ioexception { stringbuffer result = new stringbuffer(); // 创建url对象 url _url = new url(url); // 创建http连接 httpurlconnection conn = (httpurlconnection) _url.openconnection(); // 设置网络连接的相关参数 // 设置输入可用 conn.setdoinput(true); // 设置输出可用 conn.setdooutput(true); // 设置不使用缓存 conn.setusecaches(false); // 设置连接超时的时间 - 5s conn.setconnecttimeout(5000); // 设置读取超时的时间 - 5s conn.setreadtimeout(5000); // 设置http请求的方法 - get conn.setrequestmethod("get"); // 设置http请求属性 - 连接方式:保持 conn.setrequestproperty("connection", "keep-alive"); // 设置http请求属性 - 字符集:utf-8 conn.setrequestproperty("charset", "utf-8"); // 设置http请求属性 - 用户代理 conn.setrequestproperty("user-agent", "mozilla/5.0 (windows nt 6.3; wow64; rv:27.0) gecko/20100101 firefox/27.0"); // 获取返回的结果 if (200 == conn.getresponsecode()) {// 判断状态码 bufferedreader br = new bufferedreader(new inputstreamreader( conn.getinputstream())); // 每次读取一行 string line; while((line = br.readline()) != null){ result.append(line); } } // 关闭http连接 conn.disconnect(); return result.tostring(); } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 搞笑图片 给你生活加点料
推荐阅读
-
Android编程实现使用Intent传输包含自定义类的ArrayList示例
-
Android开发实现的获取sdcard大小及内存大小工具类
-
Android开发实现的几何图形工具类GeometryUtil完整实例
-
Android开发实现的IntentUtil跳转多功能工具类【包含视频、音频、图片、摄像头等操作功能】
-
Android开发中4个常用的工具类【Toast、SharedPreferences、网络及屏幕操作】
-
Android开发之拼音转换工具类PinyinUtils示例
-
Android工具类ImgUtil选择相机和系统相册
-
android实用工具类分享(获取内存/检查网络/屏幕高度/手机分辨率)
-
android开发教程之实现toast工具类
-
Android utils 工具类之MD5加密 MD5Utils