Can someone help me with code to send SMS using J2ME?

Thanks

link|improve this question

Is there anything specific you don't understand in the JSR-120 or JSR-205 specification or in the example code provided in the JavaME SDK? – QuickRecipesOnSymbianOS May 18 '09 at 10:47
feedback

3 Answers

up vote 2 down vote accepted

Sending and Receiving SMS on J2ME Device

link|improve this answer
feedback

Start this thread to send SMS

public class SendSMS extends Thread {

private String receiver;
private String receivedMsg;
private HomeScreen home;
private boolean bool = false;
private boolean notsent;

public SendSMS(HomeScreen gen, String msg, String number) {
    this.home = gen;
    this.receiver = number;
    this.receivedMsg = msg;
}

public void run() {
    while (!bool) {
        SendMessage();
    }
}

/**
 * Send the mesage using WMA api.
 */
private void SendMessage() { 
    String s = "sms://" + receiver;
    send(s);
}

private void send(String url) {
    MessageConnection messageconnection = null;
    try {
        messageconnection = (MessageConnection) Connector.open(url);
        TextMessage textmessage = (TextMessage) messageconnection.newMessage(MessageConnection.TEXT_MESSAGE);
        textmessage.setAddress(url);
        textmessage.setPayloadText(receivedMsg);
        messageconnection.send(textmessage);
    } catch (Exception throwable) {
        notsent = true;
        home.genericObject.setSmsStatus(false);
        if (!home.isNokia()) {
            new PopUp("Message not sent"); // not sent
        }
        bool = true;
        try {
            messageconnection.close();
        } catch (Exception e) {
        }
    }

    if (messageconnection != null) {
        try {
            messageconnection.close();
            if (!notsent) {
                home.genericObject.setSmsStatus(false);
                if (!home.isNokia()) {
                    new PopUp("Message Sent"); // sent
                }
            }
            bool = true;
        } catch (Exception ie) {
            ie.printStackTrace();
        }
    }
}

}

Nokia devices don't show system alert if message is sent from j2me. so if u want to show alert, then your have create your own PopUp and show.

link|improve this answer
feedback

you can easily search code on google.com but anyways follow below code

private boolean SendSMS(String sPhoneNo, String sMessage)
{
    boolean result = true;
    try {
        String addr = "sms://" + sPhoneNo;
        MessageConnection conn = (MessageConnection) Connector.open(addr);
        TextMessage msg = (TextMessage) conn.newMessage(MessageConnection.TEXT_MESSAGE);
        msg.setPayloadText(sMessage);
        conn.send(msg);
        conn.close();
    } catch (SecurityException se) {
        result = false;
    } catch (Exception e) {
        result = false;
    }
    return result;
}  

you can specify any special port also just add ":port_no" after "String addr = "sms://" + sPhoneNo"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.