不能影响一个简单的Double []表的值,该表始终为null

时间:2013-12-16 10:43:01

标签: java gps double nmea

我有一个包含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;
}

1 个答案:

答案 0 :(得分:2)

Double[]coordinatestoconvert=null;

这一行必须是:

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

您对coordinateconverted也有同样的问题。

您还应该阅读标准的Java样式和编码约定,因为这样可以让您的代码更容易阅读。

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

你可以在任何地方使用double而不是Double来获得更好的性能(如果对于这个程序更重要)。