用于蓝牙的Android流式缓冲读卡器 [英] Buffered Reader for Android Streaming from Bluetooth

查看:71
本文介绍了用于蓝牙的Android流式缓冲读卡器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

伙计们,所以我正尝试从蓝牙设备读取流,该流持续流式传输整数,如下所示:

Hey guys so I'm trying to read a stream from a bluetooth device continuously streaming integers like this:

-11
121
123
1234
-11

我可以使用网上找到的所有代码进行所有操作,但是要进行一些处理,数字必须是整数(而不是字符串),parseInt占用了过多的CPU,因此我尝试使用无用的缓冲流.

I have everything working with some code I found online, but to do some of the processing the numbers need to be ints as opposed to Strings, parseInt is taking up too much CPU, and I tried using a buffered stream with no avail.

这是当前方法:

 void beginListenForData()
        {
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, "US-ASCII");
                                    readBufferPosition = 0;

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

        workerThread.start();
    }

如果有所作为,则数据来自Arudino,我可以修改其流式传输方式.

If it makes a difference, the data is coming from an Arudino, which I can modify the way it streams.

谢谢!

推荐答案

使用围绕 BufferedInputStream 包裹的 DataInputStream readInt()方法.这假定网络字节顺序当然是整数.

Use a DataInputStream wrapped around a BufferedInputStream, and the readInt() method. This assumes network byte order in the integers of course.

忘记所有这些 arraycopy()东西.

这篇关于用于蓝牙的Android流式缓冲读卡器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆