Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/381.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 如何使用smslib存储短信?_Java_Mysql_Smslib - Fatal编程技术网

Java 如何使用smslib存储短信?

Java 如何使用smslib存储短信?,java,mysql,smslib,Java,Mysql,Smslib,我需要在MySQL中存储SMS(当它们到达GSM调制解调器时) 我读过文档,但上面说要使用smsserver和conffile。 然后我读到我应该使用database.java 有人能在这方面指导我吗 我已经在使用ReadMessages.java,并且我已经实现了在MySQL数据库中的存储,但是我已经设法只存储SIM卡内存中的信息,而不是入站信息 入站消息只是由控制台打印的,我了解到这可以通过线程实现 这是我的代码: public void doIt() throws Exception {

我需要在MySQL中存储SMS(当它们到达GSM调制解调器时)

我读过文档,但上面说要使用smsserver和conffile。 然后我读到我应该使用database.java

有人能在这方面指导我吗

我已经在使用ReadMessages.java,并且我已经实现了在MySQL数据库中的存储,但是我已经设法只存储SIM卡内存中的信息,而不是入站信息

入站消息只是由控制台打印的,我了解到这可以通过线程实现

这是我的代码:

public void doIt() throws Exception
{
    // Define a list which will hold the read messages.
    List<InboundMessage> msgList;
    // Create the notification callback method for inbound & status report
    // messages.
    InboundNotification inboundNotification = new InboundNotification();
    // Create the notification callback method for inbound voice calls.
    CallNotification callNotification = new CallNotification();
    //Create the notification callback method for gateway statuses.
    GatewayStatusNotification statusNotification = new GatewayStatusNotification();
    OrphanedMessageNotification orphanedMessageNotification = new OrphanedMessageNotification();
    try
    {
        //System.out.println("Example: Read messages from a serial gsm modem.");
        //System.out.println(Library.getLibraryDescription());
        //System.out.println("Version: " + Library.getLibraryVersion());
        // Create the Gateway representing the serial GSM modem.
        SerialModemGateway gateway = new SerialModemGateway("modem.com1", "COM4", 115200, "Huawei", "E160");
        // Set the modem protocol to PDU (alternative is TEXT). PDU is the default, anyway...
        gateway.setProtocol(Protocols.PDU);
        // Do we want the Gateway to be used for Inbound messages?
        gateway.setInbound(true);
        // Do we want the Gateway to be used for Outbound messages?
        gateway.setOutbound(true);
        // Let SMSLib know which is the SIM PIN.
        gateway.setSimPin("0000");
        // Set up the notification methods.
        Service.getInstance().setInboundMessageNotification(inboundNotification);
        Service.getInstance().setCallNotification(callNotification);
        Service.getInstance().setGatewayStatusNotification(statusNotification);
        Service.getInstance().setOrphanedMessageNotification(orphanedMessageNotification);
        // Add the Gateway to the Service object.
        Service.getInstance().addGateway(gateway);
        // Similarly, you may define as many Gateway objects, representing
        // various GSM modems, add them in the Service object and control all of them.
        // Start! (i.e. connect to all defined Gateways)
        Service.getInstance().startService();
        // Printout some general information about the modem.
        System.out.println();
        System.out.println("Informacion del modem:");
        System.out.println(" Fabricante: " + gateway.getManufacturer());
        System.out.println("  Modelo: " + gateway.getModel());
        System.out.println("  Serial No: " + gateway.getSerialNo());
        System.out.println("  SIM IMSI: " + gateway.getImsi());
        //System.out.println("  Signal Level: " + gateway.getSignalLevel() + " dBm");
        //System.out.println("  Battery Level: " + gateway.getBatteryLevel() + "%");
        System.out.println();
        // In case you work with encrypted messages, its a good time to declare your keys.
        // Create a new AES Key with a known key value. 
        // Register it in KeyManager in order to keep it active. SMSLib will then automatically
        // encrypt / decrypt all messages send to / received from this number.
        Service.getInstance().getKeyManager().registerKey("+306948494037", new AESKey(new SecretKeySpec("0011223344556677".getBytes(), "AES")));
        // Read Messages. The reading is done via the Service object and
        // affects all Gateway objects defined. This can also be more directed to a specific
        // Gateway - look the JavaDocs for information on the Service method calls.

                ConexionMySQL mysql = new ConexionMySQL();
                Connection cnn =  mysql.Conectar();
                String sms= "";
                String originator="";


                String sql ="";
                int n = 0;
                String success="Mensajee satisfactorio";

                msgList = new ArrayList<InboundMessage>();
        Service.getInstance().readMessages(msgList, MessageClasses.ALL);
        for (InboundMessage msg : msgList){
            //System.out.println(msg);
                     sms = msg.getText().toString();
                     remitente = msg.getOriginator().toString();
                     //fecha = msg.getDate().getTime();




                sql ="INSERT INTO message(message, originator) VALUES (?,?)";

                PreparedStatement post = (PreparedStatement) cnn.prepareStatement(sql);
                post.setString(1, message);
                post.setString(2, originator);
                //post.setDate(3, fecha);   public void doIt() throws Exception
{
    // Define a list which will hold the read messages.
    List<InboundMessage> msgList;
    // Create the notification callback method for inbound & status report
    // messages.
    InboundNotification inboundNotification = new InboundNotification();
    // Create the notification callback method for inbound voice calls.
    CallNotification callNotification = new CallNotification();
    //Create the notification callback method for gateway statuses.
    GatewayStatusNotification statusNotification = new GatewayStatusNotification();
    OrphanedMessageNotification orphanedMessageNotification = new OrphanedMessageNotification();
    try
    {
        //System.out.println("Example: Read messages from a serial gsm modem.");
        //System.out.println(Library.getLibraryDescription());
        //System.out.println("Version: " + Library.getLibraryVersion());
        // Create the Gateway representing the serial GSM modem.
        SerialModemGateway gateway = new SerialModemGateway("modem.com1", "COM4", 115200, "Huawei", "E160");
        // Set the modem protocol to PDU (alternative is TEXT). PDU is the default, anyway...
        gateway.setProtocol(Protocols.PDU);
        // Do we want the Gateway to be used for Inbound messages?
        gateway.setInbound(true);
        // Do we want the Gateway to be used for Outbound messages?
        gateway.setOutbound(true);
        // Let SMSLib know which is the SIM PIN.
        gateway.setSimPin("0000");
        // Set up the notification methods.
        Service.getInstance().setInboundMessageNotification(inboundNotification);
        Service.getInstance().setCallNotification(callNotification);
        Service.getInstance().setGatewayStatusNotification(statusNotification);
        Service.getInstance().setOrphanedMessageNotification(orphanedMessageNotification);
        // Add the Gateway to the Service object.
        Service.getInstance().addGateway(gateway);
        // Similarly, you may define as many Gateway objects, representing
        // various GSM modems, add them in the Service object and control all of them.
        // Start! (i.e. connect to all defined Gateways)
        Service.getInstance().startService();
        // Printout some general information about the modem.
        System.out.println();
        System.out.println("Informacion del modem:");
        System.out.println(" Fabricante: " + gateway.getManufacturer());
        System.out.println("  Modelo: " + gateway.getModel());
        System.out.println("  Serial No: " + gateway.getSerialNo());
        System.out.println("  SIM IMSI: " + gateway.getImsi());
        //System.out.println("  Signal Level: " + gateway.getSignalLevel() + " dBm");
        //System.out.println("  Battery Level: " + gateway.getBatteryLevel() + "%");
        System.out.println();
        // In case you work with encrypted messages, its a good time to declare your keys.
        // Create a new AES Key with a known key value. 
        // Register it in KeyManager in order to keep it active. SMSLib will then automatically
        // encrypt / decrypt all messages send to / received from this number.
        Service.getInstance().getKeyManager().registerKey("+306948494037", new AESKey(new SecretKeySpec("0011223344556677".getBytes(), "AES")));
        // Read Messages. The reading is done via the Service object and
        // affects all Gateway objects defined. This can also be more directed to a specific
        // Gateway - look the JavaDocs for information on the Service method calls.

                    ConexionMySQL mysql = new ConexionMySQL();
                    Connection cnn =  mysql.Conectar();
                    String sms= "";
                    String remitente="";
                    //Date fecha;

                    String sql ="";
                    int n = 0;
                    String mensaje="Mensajee satisfactorio";

                    msgList = new ArrayList<InboundMessage>();
        Service.getInstance().readMessages(msgList, MessageClasses.ALL);
        for (InboundMessage msg : msgList){
            //System.out.println(msg);
                         sms = msg.getText().toString();
                         remitente = msg.getOriginator().toString();
                         //fecha = msg.getDate().getTime();




                    sql ="INSERT INTO mensaje(mensaje, remitente) VALUES (?,?)";

                    PreparedStatement post = (PreparedStatement) cnn.prepareStatement(sql);
                    post.setString(1, sms);
                    post.setString(2, originator);


                    n = post.executeUpdate();

                    if(n >0){
                        JOptionPane.showMessageDialog(null, mensaje);
                        Service.getInstance().deleteMessage(msg);

                    }















        // Sleep now. Emulate real world situation and give a chance to the notifications
        // methods to be called in the event of message or voice call reception.
                    System.out.println("Now Sleeping - Hit <enter> to stop service.");
        System.in.read();



        System.in.read();






                    }
    }
    catch (Exception e)
    {
        e.printStackTrace();
    }
    finally
    {
        Service.getInstance().stopService();
    }
}

                n = post.executeUpdate();

                if(n >0){
                    JOptionPane.showMessageDialog(null, mensaje);
                    Service.getInstance().deleteMessage(msg);

                }















        // Sleep now. Emulate real world situation and give a chance to the notifications
        // methods to be called in the event of message or voice call reception.
                System.out.println("Now Sleeping - Hit <enter> to stop service.");
        System.in.read();



        System.in.read();






                }
    }
    catch (Exception e)
    {
        e.printStackTrace();
    }
    finally
    {
        Service.getInstance().stopService();
    }
}
public void doIt()引发异常
{
//定义一个包含已读消息的列表。
列出msgList;
//为入站状态报告创建通知回调方法(&S)
//信息。
InboundNotification InboundNotification=新建InboundNotification();
//为入站语音呼叫创建通知回调方法。
CallNotification CallNotification=新建CallNotification();
//为网关状态创建通知回调方法。
网关状态通知状态通知=新网关状态通知();
OrphanedMessageGenotify OrphanedMessageGenotify=新的OrphanedMessageGenotify();
尝试
{
//System.out.println(“示例:从串行gsm调制解调器读取消息”);
//System.out.println(Library.getLibraryDescription());
//System.out.println(“版本:”+Library.getLibraryVersion());
//创建表示串行GSM调制解调器的网关。
SerialModemGateway网关=新的SerialModemGateway(“modem.com1”、“COM4”、115200、“华为”、“E160”);
//将调制解调器协议设置为PDU(可选为文本)。无论如何,PDU是默认值。。。
gateway.setProtocol(Protocols.PDU);
//我们是否希望网关用于入站邮件?
gateway.setInbound(true);
//我们是否希望网关用于出站消息?
gateway.setOutbound(true);
//让SMSLib知道哪个是SIM PIN。
gateway.setSimPin(“0000”);
//设置通知方法。
Service.getInstance().setInboundMessageNotification(inboundNotification);
Service.getInstance().setCallNotification(callNotification);
Service.getInstance().setGatewayStatusNotification(statusNotification);
Service.getInstance().SetOrphanedMessageGenotify(OrphanedMessageGenotify);
//将网关添加到服务对象。
Service.getInstance().addGateway(网关);
//类似地,您可以定义尽可能多的网关对象,表示
//各种GSM调制解调器,将它们添加到服务对象中并控制所有这些调制解调器。
//启动!(即连接到所有定义的网关)
Service.getInstance().startService();
//打印出一些有关调制解调器的一般信息。
System.out.println();
System.out.println(“调制解调器信息”);
System.out.println(“Fabricante:+gateway.getManufacturer());
System.out.println(“Modelo:+gateway.getModel());
System.out.println(“序列号:+gateway.getSerialNo());
System.out.println(“SIM-IMSI:+gateway.getImsi());
//System.out.println(“信号电平:“+gateway.getSignalLevel()+”dBm”);
//System.out.println(“电池电量:+gateway.getBatteryLevel()+“%”);
System.out.println();
//在处理加密消息时,最好声明密钥。
//创建具有已知键值的新AES密钥。
//在KeyManager中注册它以保持其活动状态。然后SMSLib将自动
//加密/解密发送到此号码或从该号码接收的所有邮件。
Service.getInstance().getKeyManager().registerKey(+306948494037),新的AESKey(新的SecretKeySpec(“0011223344556677.getBytes(),“AES”));
//读取消息。通过服务对象和
//影响定义的所有网关对象。这也可以更直接地指向特定的网关对象
//网关-查看JavaDocs以获取有关服务方法调用的信息。
ConexionMySQL mysql=新的ConexionMySQL();
连接cnn=mysql.Conectar();
字符串sms=“”;
字符串发起者=”;
字符串sql=“”;
int n=0;
字符串success=“Mensajee satisfactorio”;
msgList=newarraylist();
Service.getInstance().readMessages(msgList、MessageClasses.ALL);
对于(InboundMessage消息:msgList){
//System.out.println(msg);
sms=msg.getText().toString();
汇款人=msg.getOriginator().toString();
//fecha=msg.getDate().getTime();
sql=“插入到消息(消息,发起者)值(?,)”;
PreparedStatement post=(PreparedStatement)cnn.prepareStatement(sql);
post.setString(1,消息);
post.setString(2,发起人);
//setDate(3,fecha);public void doIt()引发异常
{
//定义一个包含已读消息的列表。
列出msgList;
//为入站状态报告创建通知回调方法(&S)
//信息。
InboundNotification InboundNotification=新建InboundNotification();
//为入站语音呼叫创建通知回调方法。
CallNotification CallNotification=新建CallNotification();
//为网关状态创建通知回调方法。
网关状态通知状态通知=新网关状态通知();
OrphanedMessageGenotify OrphanedMessageGenotify=新的OrphanedMessageGenotify();
尝试
{
//System.out.println(“示例:从串行gsm调制解调器读取消息”);
//System.out.println(Library.getLibraryDescription());
//System.out.println(“版本:”+Library.g
public class InboundNotification implements IInboundMessageNotification
{
    public void process(AGateway gateway, MessageTypes msgType, InboundMessage msg)
    {
        if (msgType == MessageTypes.INBOUND) System.out.println(">>> New Inbound message detected from Gateway: " + gateway.getGatewayId());
        else if (msgType == MessageTypes.STATUSREPORT) System.out.println(">>> New Inbound Status Report message detected from Gateway: " + gateway.getGatewayId());
        System.out.println(msg);
    }
}