0

我有一个包含 NMEA 框架的文本文件。我检索 $GPGGA 和 $GPRMC 帧的纬度和经度。对于这部分,没关系。

现在,我想将纬度和经度转换为十进制度。当我尝试将值影响到 Double[]coordinatestoconvert. 这个总是空的。

好像这个错误真的很白痴,但是我今天早上都在为这样的愚蠢而转身......

有人能帮助我吗 ?

以下是我正在使用的方法:

public String readText(String filepath) throws Exception
{
    String text="";
    try 
    {
        InputStream inputs=new FileInputStream(filepath);
        InputStreamReader inputsreader=new InputStreamReader(inputs);

        BufferedReader buffer=new BufferedReader(inputsreader);
        String line;
        while((line=buffer.readLine())!=null)
        {
            /* Server send to Client the full line. Then Client will select
             * which data will be retrieve */

            String[]splitedline=line.split(",");
            Double[]decimalcoordinates=retrieveCoordinates(splitedline);

            messagearea.append(decimalcoordinates[0].toString()+","+decimalcoordinates[1].toString());
            tcpserver.sendMessage(decimalcoordinates[0].toString()+","+decimalcoordinates[1].toString());

        }
        buffer.close();
    } 
    catch(FileNotFoundException e) 
    {
        System.out.println(e);
    }   
    return text;
}

public Double[] retrieveCoordinates(String[] splitedline)
{
    Double[]coordinates=null;


    if((splitedline[0]=="$GPGGA") || (splitedline[0]=="$GPRMC"))
    {
        Double[]coordinatestoconvert=null;
        // coordinatestoconvert is always null here
        coordinatestoconvert[0]=Double.parseDouble(splitedline[3]);
        coordinatestoconvert[1]=Double.parseDouble(splitedline[5]);
        coordinates=convertNmeaToDecimal(coordinatestoconvert);
    }
    return coordinates;
}

public Double[] convertNmeaToDecimal(Double[] coordinatestoconvert)
{
    Double[]coordinatesconverted=null;
    for(int i=0;i<2;i++)
    {
        Double degrees=coordinatestoconvert[i]/100;
        Double time=coordinatestoconvert[i]-degrees;

        coordinatesconverted[i]=degrees+time/60;
    }
    return coordinatesconverted;
}
4

1 回答 1

2
Double[]coordinatestoconvert=null;

这条线需要:

Double[] coordinatestoconvert=new Double[coordinatestoconvert.length];

坐标转换也有同样的问题。

您还应该阅读标准的 java 风格和编码约定,因为它会使您的代码更容易被其他人阅读。

您还使用 == 而不是 .equals 进行字符串比较,这是无效的。

并且尽可能使用 double 而不是 Double 获得更好的性能(如果这对这个程序很重要)。

于 2013-12-16T10:45:57.097 回答