主要是两个类
/*
 * test.java
 *
 * Created on 20046る24ら, と 3:18
 */package com.ipfront.ifti.ifapi.sgipapi;/**
 *
 * @author  inc030886
 */
public class test {
    
    /** Creates a new instance of test */
    public test() 
    {
    }
    
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        sgipSend send = new sgipSend();
        send.start();
        System.out.println("do know");
        sgipSend.send("8613042525978", 
                       "5552",
                       sgipSend.CODING_TYPE_GBK,
                       "你好",
                       "8613042525978",
                       sgipSend.PAY_TYPE_FREE,
                       10,
                       sgipSend.SEND_REASON_MT);
        sgipRecv.startServer();
        
        
    }
    
}