public static void sendPost(){
//创建post请求对象
HttpPost post = new HttpPost("https://sms.yunpian.com/v2/sms/batch_send.json");
try {
//创建参数集合
List<BasicNameValuePair> list = new ArrayList<BasicNameValuePair>();
//添加参数
list.add(new BasicNameValuePair("apikey", "greg23423kbd2b131"));
list.add(new BasicNameValuePair("text","【提示】XX信息定时消费失败"));
list.add(new BasicNameValuePair("mobile", "66666634354,5454344343"));
//把参数放入请求对象,,post发送的参数list,指定格式
post.setEntity(new UrlEncodedFormEntity(list, "UTF-8"));
//添加请求头参数
post.addHeader("timestamp","1594695607545");
CloseableHttpClient client = HttpClients.createDefault();
//启动执行请求,并获得返回值
CloseableHttpResponse response = client.execute(post);
//得到返回的entity对象
HttpEntity entity = response.getEntity();
//把实体对象转换为string
String result = EntityUtils.toString(entity, "UTF-8");
//返回内容
System.out.println(result);
} catch (Exception e1) {
e1.printStackTrace();
}
}