一、需求文档如下:

  URL:http://108.188.129.56:8080/example/cal

  请求格式: {"para1":10,"para2":2,"opt":"div"}

  请求参数说明:para1表示第一个参数,para2表示第二个参数,opt表示四则运算操作,可取的值为plus、sub、mult、div,分别对应加、减、乘、除

  响应格式: {"code":0,"result":5}

  响应参数说明:
  code为响应码,0表示正常,其他值表示接口调用异常(例如:-1表示参数格式不正确,1表示除数为0等等)

二、Java代码如下

  1、切换Android Studio视图,从Android切换到Project,然后将Gson包放到...\app\libs文件夹下。

  2、打开app-src-build.gradle,加上依赖语句:compile fileTree(dir: 'libs', include: ['*.jar']),如下:(如已经有则不必添加)

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.1.0'
    testCompile 'junit:junit:4.12'
}

  3、然后代码编辑界面的上方会出现提示:Gradle Files 已经被修改,需要同步。点击右上角的Sync now即可。

  4、添加Java代码。

public class MainActivity extends AppCompatActivity {
    private final int POST_VALUE = 1;
    String text = "";
    //这里不能获取ID,因为下面还没连接到activity_main,xml
    TextView textView;
    //--------------------------------------------定义一个Handler来处理消息----------------------------------------------
    final Handler handler = new Handler() {
        @Override
        public void handleMessage(Message message) {
            switch (message.what) {
                case POST_VALUE:
                    textView.setText(text = (text + "=" + message.obj));
                    text = "";
                    break;
                default:
                    break;
            }
        }
    };

    //-----------------------------------------------------------------------------------------------------
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        textView = (TextView) findViewById(R.id.textView);
        //-------------------------------------------设置符号=的监听--------------------------------------------------
        Button sendGET = (Button) findViewById(R.id.send);
        sendGET.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                try {
                   //新建一个线程,通过Message消息通知Handle对UI进行更改,现在只能在UI线程里对UI组件进行更改。
              new Thread(new Runnable() {
                        @Override
                        public void run() {
                            if(strTmp.length==2){
                   //下面三句话,将会把三个参数包装为{"para1":10,"para2":2,"opt":"div"}字段
                                CalBean tb = new CalBean(10, 2, “plus”);
                                Gson gson = new Gson();
                                //传入的参数
                                String datas = gson.toJson(tb);
                                String url = "http://108.188.129.56:8080/example/cal";
                                String data = sendPostRequest(url, datas);
                                Message message = new Message();
                                message.what = POST_VALUE;
                                message.obj = data.toString();
                                handler.sendMessage(message);
                            }
                        }
                    }).start();
                } catch (Exception e) {
                    Log.i("ok", "there must be something wrong!");
                    return;
                }
            }
        });
        //-----------------------------------------------------------------------------------------------------
    }

    public static String sendPostRequest(String url, String param) {
        HttpURLConnection httpURLConnection = null;
        OutputStream out = null; //写
        InputStream in = null;   //读
        int responseCode = 0;    //远程主机响应的HTTP状态码
        String result = "";
        try {
            URL sendUrl = new URL(url);
            httpURLConnection = (HttpURLConnection) sendUrl.openConnection();
            //post方式请求
            httpURLConnection.setRequestMethod("POST");
            //设置头部信息
            httpURLConnection.setRequestProperty("headerdata", "ceshiyongde");
            //一定要设置 Content-Type 要不然服务端接收不到参数
            httpURLConnection.setRequestProperty("Content-Type", "application/Json; charset=UTF-8");
            //指示应用程序要将数据写入URL连接,其值默认为false(是否传参)
            httpURLConnection.setDoOutput(true);
            //httpURLConnection.setDoInput(true);
            httpURLConnection.setUseCaches(false);
            httpURLConnection.setConnectTimeout(30000); //30秒连接超时
            httpURLConnection.setReadTimeout(30000);    //30秒读取超时
            //传入参数
            out = httpURLConnection.getOutputStream();
            out.write(param.getBytes());
            out.flush(); //清空缓冲区,发送数据
            out.close();
            responseCode = httpURLConnection.getResponseCode();
            //获取请求的资源
            BufferedReader br = new BufferedReader(new InputStreamReader(httpURLConnection.getInputStream(), "UTF-8"));
            result = br.readLine();
        } catch (Exception e) {
            e.printStackTrace();
        }
        Map<String, String> map = new Gson().fromJson(result,
                new TypeToken<Map<String, String>>() {
                }.getType());
        return map.get("result");
    }
}

  5、在MainActivity同级目录下新建一个包Bean,在包下新建一个CalBean的Java类,添加如下代码。

public class CalBean {
    private float para1;
    private float para2;
    private String opt;

    public CalBean(float para1, float para2, String opt) {
        this.para1 = para1;
        this.para2 = para2;
        this.opt = opt;
    }

    public CalBean(){};

    public float getpara1() {
        return para1;
    }

    public float getPara2() {
        return para2;
    }

    public String getOpt() {
        return opt;
    }

    public void setpara1(float para1) {
        this.para1 = para1;
    }

    public void setPara2(float para2) {
        this.para2 = para2;
    }

    public void setOpt(String opt) {
        this.opt = opt;
    }

    @Override
    public String toString() {
        return "CalBean{" +
                "para1=" + para1 +
                ", para2=" + para2 +
                ", opt='" + opt + '\'' +
                '}';
    }
}

三、界面布局如下

<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:rowCount="7"
    android:columnCount="4"
    tools:context="com.example.weihy.fourfour.MainActivity"
    >

    <TextView
        android:layout_width="match_parent"
        android:layout_height="100dp"
        android:id="@+id/textView"
        android:layout_columnSpan="4"
        />
    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="="
        android:id="@+id/send"
        />
</GridLayout> 

四、打开网络请求

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.weihy.fourfour">
    <uses-permission android:name="android.permission.INTERNET"/>
    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

五、分析

观察发现,gson.toJson的作用就是把para1=102.0等号左边的加上转意符\弄成有“”扩着的,在等号右边的有‘’号的话,也加上\弄成双引号“”。

花括号不会有引号扩着,只有最外边的大引号左右扩住全部,CalBean这几个字好像没什么用,修改掉也没什么异常。

【Android】使用Gson和Post请求和服务器通信的更多相关文章

  1. Android操作HTTP实现与服务器通信(转)

    Android操作HTTP实现与服务器通信   本示例以Servlet为例,演示Android与Servlet的通信. 众所周知,Android与服务器通信通常采用HTTP通信方式和Socket通信方 ...

  2. Android 采用post方式提交数据到服务器

    接着上篇<Android 采用get方式提交数据到服务器>,本文来实现采用post方式提交数据到服务器 首先对比一下get方式和post方式: 修改布局: <LinearLayout ...

  3. 客户端(android,ios)与服务器通信

    android,ios客户端与服务器通信为了便于理解,直接用PHP作为服务器端语言 其实就是一个 http请求响应的过程序,先从 B/S模式说起浏览器发起http请求,服务器响应请求,并把数据返回给浏 ...

  4. Android操作HTTP实现和服务器通信

    众所周知,Android与服务器通信通常采用HTTP通信方式和Socket通信方式,而HTTP通信方式又分get和post两种方式.至于Socket通信会在以后的博文中介绍. HTTP协议简介: HT ...

  5. Android版本28使用http请求

    Android版本28使用http请求报错not permitted by network security policy android模拟器调试登录的时候报错 CLEARTEXT communic ...

  6. Android版本28使用http请求报错not permitted by network security policy

    Android版本28使用http请求报错not permitted by network security policy android模拟器调试登录的时候报错 CLEARTEXT communic ...

  7. HTTP基础与Android之(安卓与服务器通信)——使用HttpClient和HttpURLConnection

    查看原文:http://blog.csdn.net/sinat_29912455/article/details/51122286 1客户端连接服务器实现内部的原理 GET方式和POST方式的差别 H ...

  8. Android+Tomcat通过http获取本机服务器资源

    写在前面:本博客为本人原创,严禁任何形式的转载!本博客只允许放在博客园(.cnblogs.com),如果您在其他网站看到这篇博文,请通过下面这个唯一的合法链接转到原文! 本博客全网唯一合法URL:ht ...

  9. Android操作HTTP实现与服务器通信

    (转自http://www.cnblogs.com/hanyonglu/archive/2012/02/19/2357842.html) 本示例以Servlet为例,演示Android与Servlet ...

随机推荐

  1. KEIL 伪指令

    //为了大家查找方便,命令按字母排序:0.ALTNAME 功能: 这一伪指令用来自定义名字,以替换源程序中原来的保留字,替换的保留字均可等效地用于子程序中. 格式: ALTNAME 保留字 自定义名 ...

  2. bzoj 1192

    http://www.lydsy.com/JudgeOnline/problem.php?id=1192 好像学过一个东西: [0..2^(N+1)-1]内的数都的都可以由2^0,2^1,...,2^ ...

  3. HDU3564 --- Another LIS (线段树维护最值问题)

    Another LIS Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total ...

  4. HDU5584 LCM Walk 数论

    LCM Walk Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Su ...

  5. JAVA车票管理系统(简单GUI)

    一.    需求分析 1.设计题目:车票管理系统 用JAVA语言和数据结构知识设计设计车票管理系统.要求如下所述: 一车站每天有n个发车班次,每个班次都有一个班次号(1.2.3…n),固定的发车时间, ...

  6. 微博OpenAPI练习之问题记录

    今日想通过新浪微博OpenAPI,做一个客户端出来.可以说过程比较艰难.这里只记录下遇到的问题,其它的按api要求注册.创建应用什么就好了. 1.API jar引用问题 创建了自己的工程,并按照文档说 ...

  7. python数据类型—列表(增改删查,统计,取值,排序)

    列表是最常用的数据类型之一,通过列表可以对数据实现方便的存储,修改等操作. 先声明一个空列表: >>> names = [] >>> names [] 可以存多个值 ...

  8. px 和 em换算

    常用px,pt,em换算表 pt (point,磅):是一个物理长度单位,指的是72分之一英寸. px (pixel,像素):是一个虚拟长度单位,是计算机系统的数字化图像长度单位,如果px要换算成物理 ...

  9. javascript对象的理解

    从代码中体会javascript中的对象: <!DOCTYPE html> <html> <head> <meta charset="utf-8&q ...

  10. class 类(3) 继承

    继承(Inheritance)是面向对象软 件技术当中的一个概念.如果一个类别A“继承自”另一个类别B,就把这个A称为“B的子类别”,而把B称为“A的父类别”,也可以称“B是A的超类”. 继承可以使得 ...