博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android面向HTTP协议发送get请求
阅读量:5142 次
发布时间:2019-06-13

本文共 843 字,大约阅读时间需要 2 分钟。

/**	 * 採用get请求的方式	 * 	 * @param username	 * @param password	 * @return null表示求得的路径有问题,text返回请求得到的数据	 */	public static String getRequest(String username, String password) {		try {			String path = "http://172.22.64.156:8080/0001AndroidWebService/LoginServlet?username="					+ URLEncoder.encode(username)					+ "&password="					+ URLEncoder.encode(password);			URL url = new URL(path);			HttpURLConnection conn = (HttpURLConnection) url.openConnection();			conn.setReadTimeout(500);			conn.setRequestMethod("GET");			int code = conn.getResponseCode();			if (code == 200) {				// 请求成功				InputStream is = conn.getInputStream();				String text = StreamUtil.readStream(is);				return text;			} else {				// 请求失败				return null;			}		} catch (Exception e) {			e.printStackTrace();		}		return null;	}

转载于:https://www.cnblogs.com/mfrbuaa/p/3918283.html

你可能感兴趣的文章
css3 box-sizing属性
查看>>
copy_from_user 详解
查看>>
spring-AOP(面向切面编程)-注解方式配置
查看>>
Sping
查看>>
UI design principle android 系统根据不同屏幕密度选择不同图片
查看>>
GridView 动态列上方添加相应的Combox等控件
查看>>
申请开发者账号
查看>>
oracle启动
查看>>
c++模板学习
查看>>
【转】MySQL Event
查看>>
[转]html5监听任何App自带返回键javascript事件
查看>>
mongodb数据备份与还原
查看>>
通俗理解LDA主题模型
查看>>
回射服务器-多路复用 select 01 (阻塞)
查看>>
分享吉林大学机械科学与工程学院,zhao jun 博士的Halcon学习过程及知识分享
查看>>
BitmapData.noise示例
查看>>
肤色阈值分割
查看>>
Android中的菜单
查看>>
【最短路】Vijos P1046 观光旅游
查看>>
Android学习总结——开篇
查看>>