Отправить по команде на GSM-модем с Java

Пытаюсь сделать программу для отправки смс. Я написал программу, но не смог отправить сообщение. Моя программа отправляет команду At на порт COM на моем компьютере, но я не получаю ответа от своего модема GSM. Я использую COM-терминал (Temp pro ...) для отправки sms с помощью команды at, и я могу отправлять sms. Поэтому я не знаю, почему программа не может отправлять смс.

import java.io.*;
import java.util.*;
import gnu.io.*;

public class prawiefinal {
    static Enumeration portList;
    static CommPortIdentifier portId;
    static String messageString = "AT+CMGF=1 \r";
    static String messageString2 = "AT+CMGS=\"+4866467xxxx\"\r";
    static String messageString3 = "TESting \u001A\r\n";
    static SerialPort serialPort;
    static OutputStream outputStream;


    public static void main(String[] args) throws InterruptedException {
        portList = CommPortIdentifier.getPortIdentifiers();

        while (portList.hasMoreElements()) {

            portId = (CommPortIdentifier) portList.nextElement();
            if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL) {

                if (portId.getName().equals("COM3")) {

                    try {
                        serialPort = (SerialPort)
                            portId.open("COM3", 2000);
                    } catch (PortInUseException e) {System.out.println("err");}
                    try {
                        outputStream = serialPort.getOutputStream();
                    } catch (IOException e) {e.printStackTrace();}
                    try {
                        serialPort.setSerialPortParams(9600,
                                SerialPort.DATABITS_8,
                                SerialPort.STOPBITS_1,
                                SerialPort.PARITY_NONE);
                    } catch (UnsupportedCommOperationException e) {e.printStackTrace();}
                    try {
                        outputStream.write(messageString.getBytes());
                        Thread.sleep(3000); 
                        outputStream.flush();

                        outputStream.write(messageString2.getBytes());  
                        Thread.sleep(3000);  
                        outputStream.flush();

                        outputStream.write(messageString3.getBytes()); 
                        Thread.sleep(3000);  
                        outputStream.write(26);
                        outputStream.flush();
                        System.out.println(messageString);  
                        Thread.sleep(3000);






                        outputStream.close();
                        serialPort.close();

                    } catch (IOException e) {e.printStackTrace());}
                }
            }
        }
    }
}

person przemo199980    schedule 12.09.2016    source источник
comment
Вместо использования println("err3") поместите e.printStackTrace() в предложение catch. Это может лучше объяснить, в чем состоит исключение. Сделайте это во всех предложениях catch, отредактируйте свой вопрос и добавьте к нему трассировку стека. Не забудьте правильно отформатировать его (не используя обратные кавычки, а используя кнопку {}).   -  person RealSkeptic    schedule 12.09.2016
comment
какой файл jar вы использовали для SerialPort   -  person AMAN SINGH    schedule 18.10.2016


Ответы (1)


Хорошо, я делаю программу и могу отправить смс. Я использую CTRL + Z и Enter, это было проблемой. : D

import java.io.*; 
import java.util.*; 
import gnu.io.*; 

public class SMSsender { 
static Enumeration portList; 
static CommPortIdentifier portId; 
static String messageString1 = "AT";
static String messageString2 = "AT+CPIN=\"7078\"";
static String messageString3 = "AT+CMGF=1"; 
static String messageString4 = "AT+CMGS=\"+4866467xxxx\"";


static String messageString5 = "TESTY2";
static SerialPort serialPort;
static OutputStream outputStream;
static InputStream inputStream;
static char enter = 13;

static char CTRLZ = 26;
public static void main(String[] args) throws InterruptedException {
 portList = CommPortIdentifier.getPortIdentifiers();



while (portList.hasMoreElements()) {

    portId = (CommPortIdentifier) portList.nextElement();
    if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL) {

         if (portId.getName().equals("COM3")) {

            try {
                serialPort = (SerialPort)
                    portId.open("COM3", 2000);
            } catch (PortInUseException e) {System.out.println("err");}
            try {
                outputStream = serialPort.getOutputStream();
                inputStream = serialPort.getInputStream();
            } catch (IOException e) {e.printStackTrace();}
            try {
                serialPort.setSerialPortParams(9600,
                    SerialPort.DATABITS_8,
                    SerialPort.STOPBITS_1,
                    SerialPort.PARITY_NONE); 
            } catch (UnsupportedCommOperationException e) {e.printStackTrace();}
            try { 

                outputStream.write((messageString1 + enter).getBytes());


                Thread.sleep(100); 
                outputStream.flush();

                outputStream.write((messageString2 + enter).getBytes()); 

                 Thread.sleep(100); 
                 outputStream.flush();

                outputStream.write((messageString3 + enter).getBytes());

                Thread.sleep(100); 
                outputStream.flush(); 




                outputStream.write((messageString4 + enter).getBytes()); 

                Thread.sleep(100);  
                outputStream.flush();

               outputStream.write((messageString5 + CTRLZ).getBytes());  

                outputStream.flush(); 
                Thread.sleep(100); 


    System.out.println("Wyslano wiadomosc");  
    Thread.sleep(3000);


    outputStream.close();
    serialPort.close();
    System.out.println("Port COM zamkniety"); 

            } catch (IOException e) {e.printStackTrace();}
        }
    }
}

} }

person przemo199980    schedule 14.09.2016