6

我的 android 应用程序正在通过蓝牙连接从 Polar Heart Rate Monitor 获取数据。我的问题是我得到这样一个字符串:���������������������������������������� ����������

我获取数据的代码:

 final Handler handler = new Handler();
    final byte delimiter = 10; //This is the ASCII code for a newline character

    stopWorker = false;
    readBufferPosition = 0;
    readBuffer = new byte[1024];
    workerThread = new Thread(new Runnable()
    {
        public void run()
        {
            while(!Thread.currentThread().isInterrupted() && !stopWorker)
            {
                try
                {
                    int bytesAvailable = mmInputStream.available();
                    if(bytesAvailable > 0)
                    {
                        byte[] packetBytes = new byte[bytesAvailable];
                        mmInputStream.read(packetBytes);
                        for(int i=0;i<bytesAvailable;i++)
                        {
                            byte b = packetBytes[i];
                            if(b == delimiter)
                            {
                                byte[] encodedBytes = new byte[readBufferPosition];
                               // System.arraycopy(readBuffer, 0, encodedBytes, 0, encodedBytes.length);
                                final String data = new String(encodedBytes, "ASCII");

                                readBufferPosition = 0;

                                handler.post(new Runnable()
                                {
                                    public void run()
                                    {
                                        pulsText.setText(data);
                                    }
                                });
                            }
                            else
                            {
                                readBuffer[readBufferPosition++] = b;
                            }
                        }
                    }
                }
                catch (IOException ex)
                {
                    stopWorker = true;
                }
            }
        }
    });

    workerThread.start();

我尝试以几种方式更改此行,但我仍然得到不正确的数据:

 final String data = new String(encodedBytes, "ASCII");

我该如何解决这个问题?

请帮忙 !!!

4

2 回答 2

4

传感器不会为您提供可打印的字符串(例如 NMEA),而是您需要解析的二进制数据。您可以查看MyTracks Polar Sensor 数据解析器以获取灵感。

您正在使用available并且read不正确(但是您使用的方式大多数时候可能会很幸运)。

于 2012-04-12T18:55:45.833 回答
0

测量单位(基于 JavaOne 的 Raspberry Pi Challenge)“Heart of Glass”项目展示了如何将其解析为类型安全的心跳单元以显示或传输到其他系统。

于 2014-05-14T15:42:01.950 回答