文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android网络通信的实现方式

2022-06-06 08:23

关注

Android网络编程分为两种:基于http协议的,和基于socket的。
基于Http协议:HttpClient、HttpURLConnection、AsyncHttpClient框架等
基于Socket
(1)针对TCP/IP的Socket、ServerSocket
(2)针对UDP/IP的DatagramSocket、DatagramPackage
(3)Apache Mina框架
一、HttpURLConnection的实现方式


String response = null; 
Url url = new URL(path); 
HttpURLConnection connection = (HttpURLConnection) url.openConnection(); // 新建连接实例 
connection.setConnectTimeout(20000);// 设置连接超时时间,单位毫秒 
//connection.setReadTimeout(20000);// 设置读取数据超时时间,单位毫秒 
connection.setDoInput(true);// 是否打开输入流 true|false 
connection.setRequestMethod("POST");// 提交方法POST|GET 
//connection.setUseCaches(false);// 是否缓存true|false 
//connection.setRequestProperty("accept", "*/*"); 
//connection.setRequestProperty("Connection", "Keep-Alive"); 
//connection.setRequestProperty("Charset", "UTF-8"); 
//connection.setRequestProperty("Content-Length", String.valueOf(data.length)); 
//connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); 
connection.connect();// 打开连接端口 
int responseCode = conn.getResponseCode(); 
BufferedReader reader = null; 
if (responseCode == 200) { 
  reader = new BufferedReader(new InputStreamReader(connection.getInputStream(), "utf-8")); 
  StringBuffer buffer = new StringBuffer(); 
  String line = ""; 
  while ((line = reader.readLine()) != null) { 
    buffer.append(line); 
  } 
  response = buffer.toString(); 
} else { 
  response = "返回码:"+responseCode; 
} 
reader.close(); 
conn.disconnect(); 

二、HttpClient实现方式


HttpResponse mHttpResponse = null; 
HttpEntity mHttpEntity = null; 
//创建HttpPost对象 
//HttpPost httppost = new HttpPost(path); 
//设置httpPost请求参数 
//httppost.setEntity(new UrlEncodedFormEntity(params,HTTP.UTF_8)); 
HttpGet httpGet = new HttpGet(path);   
HttpClient httpClient = new DefaultHttpClient(); 
InputStream inputStream = null; 
BufferedReader bufReader = null; 
String result = ""; 
// 发送请求并获得响应对象 
mHttpResponse = httpClient.execute(httpGet);//如果是“POST”方式就传httppost  
if (mHttpResponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK) { 
  // 获得响应的消息实体 
  mHttpEntity = mHttpResponse.getEntity(); 
  // 获取一个输入流 
  inputStream = mHttpEntity.getContent(); 
  bufReader = new BufferedReader(new InputStreamReader(inputStream));  
  String line = ""; 
  while (null != (line = bufReader.readLine())) { 
    result += line; 
  } 
  //result = EntityUtils.toString(mHttpResponse.getEntity()); 
}  
if (inputStream != null) { 
  inputStream.close(); 
} 
bufReader.close(); 
if (httpClient != null) { 
  httpClient.getConnectionManager().shutdown(); 
} 

三、实用AsyncHttpClient框架的实现方式


AsyncHttpClient client = new AsyncHttpClient();  
client.get(url, new AsyncHttpResponseHandler() {  
  @Override  
  public void onSuccess(int i, Header[] headers, byte[] bytes) {        
    String response = new String(bytes, 0, bytes.length, "UTF-8");            
  }  
  @Override  
  public void onFailure(int i, Header[] headers, byte[] bytes, Throwable throwable) {  
  }  
});  

四、使用WebView视图组件显示网页


myWebView.getSettings().setJavaScriptEnabled(true);  
myWebView.setWebViewClient(new WebViewClient() {  
  @Override  
  public boolean shouldOverrideUrlLoading(WebView view, String url) {  
    view.loadUrl(url);  
    return true;  
  }  
});  
myWebView.loadUrl("http://"+networkAddress);  

以上就是Android中网络通信几种方式的全部内容,希望对大家的学习有所帮助。

您可能感兴趣的文章:Android之网络通信案例分析android 检查网络连接状态实现步骤Android中判断网络连接是否可用及监控网络状态Android Handler主线程和一般线程通信的应用分析Android 进程间通信实现原理分析android中图片的三级缓存cache策略(内存/文件/网络)android 网络编程之网络通信几种方式实例分享Android提高之MediaPlayer播放网络视频的实现方法Android提高之Android手机与BLE终端通信Android网络编程之UDP通信模型实例


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯