Xamarin蓝牙InputStream不读取所有字节(有时)

时间:2016-03-01 08:39:59

标签: android xamarin bluetooth xamarin.ios xamarin.forms

我使用此代码来阅读Bluetooth而非LE设备的回复。

解决方案是Xamarin Forms项目,代码位于DependencyService

using Android.Bluetooth;

....

    public byte[] GetCommand()
    {
        byte[] rbuffer = new byte[200];
        try
        {

            // Read data from the device
            while (!_socket.InputStream.CanRead || !_socket.InputStream.IsDataAvailable())
            {

            }
            int readByte = _socket.InputStream.Read(rbuffer, 0, rbuffer.Length);

        }
        catch (Java.IO.IOException e)
        {

        }
        return rbuffer;
    }

如何解决它?

1 个答案:

答案 0 :(得分:2)

我会改用以下代码:

//create new class for connect thread
  private class ConnectedThread extends Thread {
        private final InputStream mmInStream;
        private final OutputStream mmOutStream;


    //creation of the connect thread
    public ConnectedThread(BluetoothSocket socket) {
        InputStream tmpIn = null;
        OutputStream tmpOut = null;

        try {
            //Create I/O streams for connection
            tmpIn = socket.getInputStream();
            tmpOut = socket.getOutputStream();
        } catch (IOException e) { }

        mmInStream = tmpIn;
        mmOutStream = tmpOut;
    }

    public void run() {
        byte[] buffer = new byte[256];
        int bytes; 

        // Keep looping to listen for received messages
        while (true) {
            try {
                bytes = mmInStream.read(buffer);            //read bytes from input buffer
                String readMessage = new String(buffer, 0, bytes);
                // Send the obtained bytes to the UI Activity via handler
                bluetoothIn.obtainMessage(handlerState, bytes, -1, readMessage).sendToTarget();
            } catch (IOException e) {
                break;
            }
        }
    }
    //write method
    public void write(String input) {
        byte[] msgBuffer = input.getBytes();           //converts entered String into bytes
        try {
            mmOutStream.write(msgBuffer);                //write bytes over BT connection via outstream
        } catch (IOException e) {
            //if you cannot write, close the application
            Toast.makeText(getBaseContext(), "Connection Failure", Toast.LENGTH_LONG).show();
            finish();

          }
        }
    }

这对我来说是从Arduino获取蓝牙信息的! :)