0

我在java中编写用于解码gps的代码,gps向我发送我可以在我的代码中看到的继续字符串但是当我解码它时,只有一个字符串被解码并且由于我的字符串必须为下一个字符串为空而停止工作我尝试这样做但没有得到成功。任何人都知道这种情况

package communication;

import javax.comm.*;
import java.util.*;
import java.io.*;
import new8.*;

class Serial
{
public static void main(String args[]) throws UnsupportedCommOperationException, IOException, TooManyListenersException
{
int c=1;

String wantedPortName = "COM6";

Enumeration portIdentifiers = CommPortIdentifier.getPortIdentifiers();

CommPortIdentifier portId = null;  
while(portIdentifiers.hasMoreElements())
{
    CommPortIdentifier pid = (CommPortIdentifier) portIdentifiers.nextElement();
    if(pid.getPortType() == CommPortIdentifier.PORT_SERIAL &&
       pid.getName().equals(wantedPortName)) 
    {
        portId = pid;
        break;
    }
}
if(portId == null)
{
    System.err.println("Could not find serial port " + wantedPortName);
    System.exit(1);
}
else
{
    System.out.println("system find gps reciever");
}
SerialPort port = null;
try {
    port = (SerialPort) portId.open(
        "RMC", 
        1);
    System.out.println("all are ok"); 
} catch(PortInUseException e) {
    System.err.println("Port already in use: " + e);
    System.exit(1);
}

port.setSerialPortParams(
    4800,
    SerialPort.DATABITS_8,
    SerialPort.STOPBITS_1,
    SerialPort.PARITY_NONE);



BufferedReader is = null;  


try {
  is = new BufferedReader(new InputStreamReader(port.getInputStream()));
  System.out.println("data is ok");
} catch (IOException e) {
  System.err.println("Can't open input stream: write-only");
  is = null;
}

String pt=null;
while(true)
{

is.readLine(); 
is.readLine(); 
  String st = is.readLine(); 

System.out.print("("+c+")");
c++;
new8 obj1=new new8();

obj1.decode(st);
  System.out.println(st);
  st=st.replace(st, "");

}

if (is != null) is.close();
/*if (os != null) os.close();*/
if (port != null) port.close();


}
}
4

2 回答 2

0

您想要实现的是通过 COM 端口解析来自 GPS 接收器的 NMEA 数据。

我在 C(开源项目导航系统“Navit”)中看到过这样的代码。

但是我记得序列号可能会被破坏,因此,他们会检查消息中是否包含“$GP” praeambel。如果 NMEA 行中提供的校验和是正确的。

我建议您看一下 Navit 代码(尽管它是用 C 语言编写的)。您不是第一个从 COM 端口解码 NMEA 的人。

于 2013-01-30T20:21:11.933 回答
0

代码应如下所示以具有正确的流程。逻辑上不说什么。

if (is !=  null) {
    //String pt = null;
    while (true) {

        String st = is.readLine();
        if (st == null) {
            break;
        }
        st = is.readLine();
        if (st == null) {
            break;
        }
        st = is.readLine();
        if (st == null) {
            break;
        }

        System.out.print("(" + c + ")");
        c++;
        new8 obj1 = new new8();

        obj1.decode(st);
        System.out.println(st);
        st = st.replace(st, "");

    }
    is.close();
}
于 2013-01-30T20:27:45.947 回答