}
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doGet(request, response);
}
}
二、创建android项目
使用android stduio 创建简单的工程。访问上面创建的servlet。
1. 首先需要设置权限
2. 引入依赖
这里我使用HttpURLConnection测试请求的过程,要使用必需添加依赖:
useLibrary ‘org.apache.http.legacy’
android 6.0(api23) 后,不再提供org.apache.http.(只保留几个类).*
3. 客户端测试代码
客户端根据以上servlet返回的json字符做相应请求。代码如下:
public static void testHttpURLConnection() {
final String path =“http://192.168.100.47:8080/Android/servlet/LoginServlet”;// 1.获取请求的路径
HttpURLConnection conn = null;
InputStream is = null;
try {
// 2.获取url对象
URL url = new URL(path);
// 3.得到连接的对象
conn = (HttpURLConnection) url.openConnection();
// 4.设置连接的参数
// 设置请求方式
//conn.setRequestMethod(“GET”);
conn.setRequestMethod(“POST”);
// 设置连接超时时间
conn.setConnectTimeout(5000);
// 设置读取数据的超时时间
conn.setReadTimeout(5000);
conn.setUseCaches(false);// Post 请求不能使用缓存
// 设置允许读取服务器端返回的数据
conn.setDoInput(true);
// 5.连接服务器
//conn.connect();//如果是post请求,不要加这个,否则可能IllegalStateException: Already connected
//如果是get请求,参数写url中,就不需要post参数
conn.setDoOutput(true);//4.0中设置httpCon.setDoOutput(true),将导致请求以post方式提交
final OutputStream outputStream = conn.getOutputStream();
outputStream.flush();
outputStream.write(“username=zhangsan”.getBytes(“UTF-8”));
outputStream.close();
// 6.获取返回的服务器端的响应码。
int responseCod
《Android学习笔记总结+最新移动架构视频+大厂安卓面试真题+项目实战源码讲义》
【docs.qq.com/doc/DSkNLaERkbnFoS0ZF】 完整内容开源分享
e = conn.getResponseCode();
// 7.只有响应码是200时,方可正常读取
if (200==responseCode) {
is = conn.getInputStream();
// 将获取的输入流中的数据转换为字符串
final String content=StreamTools.readStream(is);
LogUtils.debug(TAG,“content=”+content);
}else{
LogUtils.debug(TAG,“responseCode=”+responseCode);
}
}catch (Exception e){
LogUtils.debug(TAG,e.toString());
}
}
将接受到的字节流转化成字符串,UTF-8编码格式。
public static String readStream(InputStream in) throws Exception{
ByteArrayOutputStream baos = new ByteArrayOutputStream();
int len = -1;
byte buffer[] = new byte[1024];
while((len=in.read(buffer))!=-1){
baos.write(buffer, 0, len);
}
in.close();
return new String(baos.toByteArray(),“UTF-8”);
//return new String(baos.toByteArray());
}