安卓蓝牙 : Slow data rates calculated from BluetoothSocket

标签 android sockets bluetooth rate

使用:HTC Legend 和 HTC Salsa

我正在使用以下方法计算速度:

while(true)
        {
            try 
            {
                int num = in.read(buffer);
                if(reading == false)
                {
                    prevTime = SystemClock.uptimeMillis();
                    reading = true;
                }
                else
                {
                    //Calculate KB/s
                    count += num;
                    Long deltaTime = SystemClock.uptimeMillis()- prevTime;
                    if(deltaTime >= 1000)
                    {
                        Float speed =  (float)count/deltaTime;
                        Log.d(TAG,"Data: " + speed + "KB/s");
                        count = 0;
                        prevTime = SystemClock.uptimeMillis();
                    }
                }

            } catch (IOException e) {
            }
        }

并使用编写一些测试数据

out.writeUTF("ababababababababababababababababbabababaababababababababababababababababbabababaababababababababababababababababbabababa" +
                        "ababababababababababababababababbabababaababababababababababababababababbabababaababababababababababababababababbabababa" +
                        "ababababababababababababababababbabababaababababababababababababababababbabababaababababababababababababababababbabababa" +
                        "ababababababababababababababababbabababaababababababababababababababababbabababaababababababababababababababababbabababa");
out.flush();

写入也在另一个线程中 while(true)。

我得到以下结果。

02-13 18:17:16.897: D/krazyTag(3432): Data: 31.554672KB/s
02-13 18:17:17.927: D/krazyTag(3432): Data: 29.854227KB/s
02-13 18:17:18.977: D/krazyTag(3432): Data: 29.285034KB/s 
02-13 18:17:20.067: D/krazyTag(3432): Data: 38.446888KB/s 
02-13 18:17:21.097: D/krazyTag(3432): Data: 35.89484KB/s 
02-13 18:17:22.127: D/krazyTag(3432): Data: 33.67118KB/s 
02-13 18:17:23.227: D/krazyTag(3432): Data: 33.512726KB/s
02-13 18:17:24.307: D/krazyTag(3432): Data: 33.277622KB/s

这让我感到困惑,因为手机规范说明他们使用 Bluetooth® 2.1 with EDR

这是capable of 260KB/S但我什至没有达到旧标准 90KB/s

我不确定这是否是我的流和读/写调用(我使用的是缓冲数据输入流) 或者,如果我计算错误或信息有误?

最佳答案

我认为速度取决于发送和接收线程的实现,因为您将 2 台 Android 设备与您自己的应用程序连接起来。你能发布你的实现吗?

我也遇到了同样的问题。
我正在使用 ACER TAB A500 与连接到 PC 的蓝牙棒进行通信,我得到的结果甚至更慢 12,3KB/s 仅用于发送数据。

这就是为什么我做了一些实验。我发送了 10000 次消息,我了解到数据速率取决于消息的长度。

For 1KB message, the data rate is 232KB/s.
For 40Byte message, the data rate is 18KB/s.
For 1Byte message, the data rate is 0.48KB/s.

这是我的代码:

// Get the BluetoothDevice object.
while(true){
    driverBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
    driverBluetoothDevice = driverBluetoothAdapter.getRemoteDevice("XX:XX:XX:XX:XX:XX");
    if (driverBluetoothDevice == null){
    break;
    }

    Method insecureMethod = driverBluetoothDevice.getClass().getMethod("createInsecureRfcommSocket", new Class[] { int.class });
    byte portNumber = 5; // The SPP in port 5.
    driverBluetoothSocket = (BluetoothSocket) insecureMethod.invoke(driverBluetoothDevice, portNumber);

// Try to connect to the Bluetooth device.
try {
    driverBluetoothSocket.connect();
} catch (IOException e1) {
    // Failed to connect to the device
        break;
}

    // Open input and output stream.
try {
    driverInputStream = driverBluetoothSocket.getInputStream();
} catch (IOException e) {
    break;
}
try {
    driverOutputStream = driverBluetoothSocket.getOutputStream();
} catch (IOException e) {
    break;
}

byte[] message = new byte[3000];
Random randomGenerator = new Random();
for (int i = 0; i < message.length; i++){
    message[i] = (byte) randomGenerator.nextInt(100); 
}

Date TimeValue = new Date();
long TimeStamp1 = TimeValue.getTime();
for (int i = 0; i < 10000; i++){
    try {
        driverOutputStream.write(message, 0, message.length);
    } catch (IOException e) {
        break;
    }
    }

TimeValue = new Date();
long TimeStamp2 = TimeValue.getTime();
long TimeDifference = TimeStamp2 - TimeStamp1;
TimeDifference = 0;
    break;
}

关于安卓蓝牙 : Slow data rates calculated from BluetoothSocket,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9257260/

相关文章:

android - javadoc 的问题

Java服务器客户端

ios - 在 ios 上跳跟踪 ttl reciveform

java - 一台设备如何使用 J2ME 确定另一台设备的蓝牙是否已连接?

Android:file.exists 在某些设备上下载和存储文件时总是返回 false

Java/安卓 : How to work with return type 'List<MyType>' ?

android - com.fasterxml.jackson.databind.exc.MismatchedInputException : Unexpected token (START_OBJECT), 预期 START_ARRAY:

python - 套接字错误 : [Errno 102] Operation not supported on socket

bluetooth - 是否可以在不配对的情况下通知 GATT 事件?

iOS 示例连接蓝牙与 MFI