自己封装的java发送短信通用工具类

复制直接使用 不懂的可以下方留言

//工具类
package com.picc.inquiries.util;

/**
 * @author 张崇俊
 * @create 2018-08-09 15:03
 * @descriptions <p></p >
 */
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.Callable;
import java.util.concurrent.FutureTask;

import org.apache.http.HttpResponse;
import org.apache.http.NameValuePair;
import org.apache.http.client.HttpClient;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.message.BasicNameValuePair;
import org.apache.http.util.EntityUtils;
public class HttpClientUtil {
    // 创建HttpClient对象
    public static HttpClient httpClient = new DefaultHttpClient();
    public static final String BASE_URL = "url";
    /**
     *
     * @param url 发送请求的URL
     * @return 服务器响应字符串
     * @throws Exception
     */
    public static String getRequest(final String url)
            throws Exception
    {
        FutureTask<String> task = new FutureTask<String>(
                new Callable<String>()
                {
                    public String call() throws Exception
                    {
                        // 创建HttpGet对象。
                        HttpGet get = new HttpGet(url);
                        // 发送GET请求
                        HttpResponse httpResponse = httpClient.execute(get);
                        // 如果服务器成功地返回响应
                        if (httpResponse.getStatusLine()
                                .getStatusCode() == 200)
                        {
                            // 获取服务器响应字符串
                            String result = EntityUtils
                                    .toString(httpResponse.getEntity());
                            return result;
                        }
                        return null;
                    }
                });
        new Thread(task).start();
        return task.get();
    }

   /* public static void main(String[] args) throws Exception {
        Map<String,String> map = new HashMap<>();
        map.put("phone","手机号");
        String s = postRequest("服务器名称", map);
        System.out.println(s);
    }*/

    public static void main(String[] args) throws Exception {
        Map<String,String> map = new HashMap<String, String>();
        String tkey=TimeUtil.getNowTime("yyyy-MM-dd HH:mm:ss");
        map.put("login_name","picchens");
        map.put("password","apegTo7E");
        map.put("mobile","手机号");
        map.put("message","验证码为");
        map.put("start_time",tkey);
        map.put("Search_ID","-1");
        String s = postRequest("服务器名称", map);
        System.out.println(s);
    }
    
    /**
     * @param url 发送请求的URL
     * @return 服务器响应字符串
     * @throws Exception
     */
    
    public static String postRequest(final String url, final Map<String ,String> rawParams)throws Exception {
        FutureTask<String> task = new FutureTask<String>(
                new Callable<String>()
                {
                    public String call() throws Exception
                    {
                        // 创建HttpPost对象。
                        HttpPost post = new HttpPost(url);
                        // 如果传递参数个数比较多的话可以对传递的参数进行封装
                        List<NameValuePair> params = new ArrayList<NameValuePair>();
                        for(String key : rawParams.keySet())
                        {
                            //封装请求参数
                            params.add(new BasicNameValuePair(key
                                    , rawParams.get(key)));
                        }
                        // 设置请求参数
                        post.setEntity(new UrlEncodedFormEntity(
                                params, "gbk"));
                        // 发送POST请求
                        HttpResponse httpResponse = httpClient.execute(post);
                        // 如果服务器成功地返回响应
                        if (httpResponse.getStatusLine()
                                .getStatusCode() == 200)
                        {
                            // 获取服务器响应字符串
                            String result = EntityUtils
                                    .toString(httpResponse.getEntity());
                            return result;
                        }
                        return null;
                    }
                });
        new Thread(task).start();
        return task.get();
    }
}

原创共同学习进步

猜你喜欢

转载自blog.csdn.net/weixin_39592397/article/details/82682915