zoukankan      html  css  js  c++  java
  • 毕业设计-进度-客户端向服务器传输数据2.3

    昨天的问题

    手机无法通过网络用socket连接服务器

    改为使用其他的端口,设置本地计算机为服务器均无法解决问题,在设置本地计算机为服务器时还出现了百度地图api连接异常的问题,显示AK鉴权失败,最终采用http协议代替套接字

    通过http协议连接客户端与服务器端

    Get

    客户端

     public void run() {
                            HttpPost httpRequest = new HttpPost(http://172.16.99.207:8080/AndroidServer/AndroidServerServlet);
                            List<namevaluepair> params = new ArrayList<namevaluepair>();
                            params.add(new BasicNameValuePair(clientData, 您好服务器端!));
                            try {
                                Message message = new Message();
                                Bundle bundle = new Bundle();
                                httpRequest.setEntity(new UrlEncodedFormEntity(params, HTTP.UTF_8));//设置请求参数项
                                HttpClient httpClient = new DefaultHttpClient();
                                HttpResponse httpResponse = httpClient.execute(httpRequest);//执行请求返回响应
                                if(httpResponse.getStatusLine().getStatusCode() == 200){//判断是否请求成功
                                    bundle.putString(msg, EntityUtils.toString(httpResponse.getEntity()));
                                }else{
                                    bundle.putString(msg, 没有获取到Android服务器端的响应!);
                                }
                                message.setData(bundle);
                                handler.sendMessage(message);
                            } catch (ClientProtocolException e) {
                                e.printStackTrace();
                            } catch (UnsupportedEncodingException e) {
                                e.printStackTrace();
                            } catch (IOException e) {
                                e.printStackTrace();
                            }
                        }
                    }).start();
                }
    

    服务器端

    public void doPost(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {
        response.setContentType(text/plain; charset=UTF-8);
        request.setCharacterEncoding(UTF-8);
        System.err.println(request.getParameter(clientData));
        PrintWriter printWriter = response.getWriter();
        ;
        printWriter.flush();
        printWriter.close();
         }
     }
    

    待完成

  • 相关阅读:
    工业4G DTU是什么和普通DTU有什么不同
    NB-IOT基站的优势和特点
    rs485通讯模块有什么作用
    串口服务器的具体做用
    4G DTU是什么 可以应用于哪些行业?
    关于linux文件出现属性显示?????????? ? ?问题的一些解决方法
    log4j.properties配置与将异常输出到Log日志文件实例
    将字符串向hdfs中写入,出现中文乱码!
    impala操作hase、hive
    Kudu基本操作及概念
  • 原文地址:https://www.cnblogs.com/1605-3QYL/p/12261683.html
Copyright © 2011-2022 走看看