Bluetooth file transfer Android
问题 I am facing a problem in sending large files over bluetooth sockets. Smaller files get transferred correctly. I believe upto 161280 bytes get transferred correctly. EDIT: I did some more testing and narrowed down the cause. It seems that outStream.write(mybytearray, 0, mybytearray.length); in the sending code part is NOT writing more than 161280 bytes. I saw this behavior by not closing the socket connection, thereby causing the read in the receiving part to "block" on 161280 bytes. What is