[J2ME] J2ME 문자 보내기(단발과 위군발)

문자 메시지의 키 코드는 다음과 같습니다.
		MessageConnection mconn = null;
		try {
			mconn = (MessageConnection) Connector.open("sms://+8618688880000");
			TextMessage m = (TextMessage) mconn
					.newMessage(MessageConnection.TEXT_MESSAGE);
			m.setAddress("sms://+8618688880000");
			m.setPayloadText("    ");
			mconn.send(m);
		} catch (Exception e) {
			e.printStackTrace();
		} finally {
			try {
				mconn.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}

다음은 제가 쓴 도구 종류입니다. sendSMS 방법을 호출하여 단발 또는 위조 군발을 할 수 있습니다. 파라미터에는 사용자 정의 감청기인 ISMSSenderListener가 사용되었습니다. 이 감청기는 호출자에게 발송 상태, 코드를 알 수 있도록 리셋을 제공합니다.
import java.io.IOException;

import javax.microedition.io.Connector;
import javax.wireless.messaging.MessageConnection;
import javax.wireless.messaging.TextMessage;

/**
 *      
 * 
 * @author Denger
 * 
 */
public class SMSHelper {
	private static final String TAG = "SMSHelper";

	/**
	 *   SMS
	 * 
	 * @param lsn
	 *                   
	 * @param number
	 *                 ,    “+86”
	 * @param msg
	 *                
	 */
	public static void sendSMS(final ISMSSenderListener lsn,
			final String number, final String msg) {
		new Thread() {
			public void run() {
				send(lsn, number, msg);
			};
		}.start();
	}

	/**
	 *   SMS
	 * 
	 * @param lsn
	 *                   
	 * @param numbers
	 *                   
	 * @param msg
	 *                
	 */
	public static void sendSMS(final ISMSSenderListener lsn,
			final String[] numbers, final String msg) {
		new Thread() {
			public void run() {
				for (int i = 0; i < numbers.length; i++) {
					send(lsn, numbers[i], msg);
					try {
						sleep(500);
					} catch (InterruptedException e) {
						// TODO Auto-generated catch block
						e.printStackTrace();
					}
				}
			}
		}.start();
	}

	/**
	 *        :             “+86”,   
	 * 
	 * @param number
	 * @return
	 */
	public static String formatNumber(String number) {
		if (number.startsWith("+86")) {
			return number.substring(3);
		}
		return number;
	}

	private static void send(ISMSSenderListener lsn, String number, String msg) {
		MessageConnection mconn = null;
		String addr = "sms://+86";
		try {
			number = formatNumber(number);
			addr += number;
			lsn.onSendStateChange(addr, ISMSSenderListener.SENDING);
			Log.d(TAG, "    ,  :" + addr);
			mconn = (MessageConnection) Connector.open(addr);
			TextMessage m = (TextMessage) mconn
					.newMessage(MessageConnection.TEXT_MESSAGE);
			m.setAddress(addr);
			m.setPayloadText(msg);
			mconn.send(m);
			lsn.onSendStateChange(addr, ISMSSenderListener.SENDOVER);
			Log.d(TAG, "    ,  ");
		} catch (Exception e) {
			e.printStackTrace();
			lsn.onSendStateChange(addr, ISMSSenderListener.SENDERROR);
			Log.e(TAG, "    :" + e.getMessage());
		} finally {
			try {
				mconn.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
	}

}

 
 
/**
 * SMS      
 * 
 * @author Denger
 * 
 */
public interface ISMSSenderListener {
	/**
	 *     
	 */
	public static final int SENDING = 0;
	/**
	 *     
	 */
	public static final int SENDOVER = 1;
	/**
	 *     
	 */
	public static final int SENDERROR = -1;

	/**
	 * SMS      
	 * 
	 * @param state
	 *                   ,        
	 */
	void onSendStateChange(String num, int state);
}

좋은 웹페이지 즐겨찾기