使用Java和AT命令发送SMS

问题描述 投票:0回答:1

我有一个TC65调制解调器,我无法从任何地方获得帮助。我想问一下如何使用Java执行AT命令。一旦程序被编写,它将被上传到调制解调器并可以独立运行。我想用Java编写一个使用AT命令发送短信的代码。

谁能帮助我?我将如何用Java编写:

number = + xxxxxxxxxx

AT + CMGS =数字/输入

(消息)/输入

我要将这个程序上传到我的GSM调制解调器,以便它在上电时发送短信。

package example.helloworld;

import javax.microedition.midlet.*;

/**
 * MIDlet with some simple text output
 */

public class HelloWorld extends MIDlet {

    /**
    * Default constructor
    */
    public HelloWorld() {
        System.out.println("Welcome");
    }

    /**
    * This is the main application entry point. Here we simply give some
    * text output and close the application immediately again.
    */
    public void startApp() throws MIDletStateChangeException {
        System.out.println("startApp");
        System.out.println("\nHello World\n");

        destroyApp(true);
    }

    /**
    * Called when the application has to be temporary paused.
    */
    public void pauseApp() {
        System.out.println("pauseApp()");
    }

    /**
    * Called when the application is destroyed. Here we must clean
    * up everything not handled by the garbage collector.
    * In this case there is nothing to clean.
    */
    public void destroyApp(boolean cond) {
        System.out.println("destroyApp(" + cond + ")");

        notifyDestroyed();    
    }
}

谢谢。

java at-command
1个回答
0
投票

尝试类似的东西:

public void startApp() throws MIDletStateChangeException {
    System.out.println("startApp");

    String MyMessage = "Hello";

    ATCommand atc = new ATCommand(false); 
    atc.send("at+cmgf=1\r");
    atc.send("at+cmgs=1234567\r");
    atc.send(MyMessage + "\032\r");    // 32 = CTRL-Z

    destroyApp(true);
}

注意,这是TC65的东西。不便携。

需要进口:

import com.siemens.icm.io.ATCommand;
© www.soinside.com 2019 - 2024. All rights reserved.