com.leosys.core.utils.SendMessage.java Source code

Java tutorial

Introduction

Here is the source code for com.leosys.core.utils.SendMessage.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.leosys.core.utils;

import java.io.IOException;
import org.apache.commons.httpclient.Header;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.NameValuePair;
import org.apache.commons.httpclient.methods.PostMethod;

/**
 *
 * @author fanyouyong
 */
public class SendMessage {
    public static String postMessage(String phoneNo, String sendText) throws IOException {
        HttpClient client = new HttpClient();
        PostMethod post = new PostMethod("http://sms.webchinese.cn/web_api/");
        post.addRequestHeader("Content-Type", "application/x-www-form-urlencoded;charset=gbk");// ?    
        NameValuePair[] data = { new NameValuePair("Uid", "fanyy"), // ??    
                new NameValuePair("Key", "694de3e5ca9f7015eaef"), // ??,    
                new NameValuePair("smsMob", phoneNo), // ??    
                new NameValuePair("smsText", sendText + "??") };//  
        post.setRequestBody(data);

        client.executeMethod(post);
        Header[] headers = post.getResponseHeaders();
        int statusCode = post.getStatusCode();
        System.out.println("statusCode:" + statusCode);
        for (Header h : headers) {
            System.out.println(h.toString());
        }
        String result = new String(post.getResponseBodyAsString().getBytes("gbk"));
        System.out.println(result);
        post.releaseConnection();
        return result;
    }

}