android蓝牙文件传输失败

时间:2013-03-14 04:06:48

标签: java android file-transfer android-networking rfcomm

这里我试图通过蓝牙发送文件,但它不发送任何数据。 这里的主要问题是它不是通过两个设备发送或接收任何数据,而是它们相互连接。

发送代码:

File myFile = new File(message.toURI());
Double nosofpackets = Math.ceil(((int) myFile.length() )/4096);
System.out.println(nosofpackets);
BufferedInputStream bis = new BufferedInputStream(new FileInputStream(myFile));
byte[] send = new byte[4096];
for(double i = 0; i < nosofpackets; i++)
{
    send = null ;
    a=bis.read(send, 0, send.length);
    Log.d("BluetoothChat", "data packet " + i);
    if(a == -1)
    {
        break;
    }
    mChatService.write(send);
}

接收代码:

while((bytes = mmInStream.read(buffer)) > 0)
{
    Log.d(TAG, "data is there for writing");
    bos.write(buffer);
}

1 个答案:

答案 0 :(得分:1)

您可能需要查看this library,以便在使用蓝牙的Android设备之间发送文件和其他数据(免责声明:我是作者)