一.案列代码
1.1 导入Maven依赖
cn.hutool
hutool-all
4.1.0
1.2编写测试类(使用Junit单元测试)
package com.grand.modelSMS;
import org.junit.Test;
import cn.hutool.http.HttpRequest;
import cn.hutool.json.JSONObject;
public class JunitTest {
@Test
public void test1() {
//1. 组建请求json参数
JSONObject json = new JSONObject();
json.put("appkey", "2e351b12c5030");
json.put("androidTitle", "PUSHDEMO");
Integer[] plat=new Integer[] {1};
json.put("plats",plat);
json.put("target", 4);
String[] registrationId=new String[] {"16772de0f6071dd4024b25de"};
json.put("registrationIds",registrationId);
json.put("content","test");
json.put("type", 1);
String url=