【发布时间】:2014-11-27 17:37:45
【问题描述】:
我正在尝试使用这些来源使文件传输蓝牙应用程序工作:
http://developer.android.com/guide/topics/connectivity/bluetooth.html
当我尝试以这种方式使用 InputStream.read() 方法获取 InputStream 字节时:
public class ConnectedThread extends Thread {
...(some code here)
public void run(){
byte[] buffer = new byte[1024];
int bytes = -1;
//Keep listening to the InputStream while connected
while (true){
try {
bytes = this.mmInStream.read(buffer);
//* this part is not reached
if (bytes==-1){
Log.d("NoData:","-1");
}
}
catch(Exception e){
Log.d("inStream exception:",e.getMessage());
break;
}
}
}
...(some code here)
}
代码的下一部分(在这种情况下为"if" 部分)永远不会到达,也不会出现Log.D 调试输出或我在后面添加的任何其他内容。我刚从 LogCat 收到这条消息:
BluetoothSocket read in: android.net.LocalStocketImpl$SocketInputStream@f7e
b08 len: 1024
要将数据从客户端传输到服务器,我这样做:
public class MainActivity extends Activity {
...(some code here)
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
clientConnect();
//serverConnect();
}
...(some code here)
public void clientConnect(){
Set<BluetoothDevice> devices;
devices = bConfig.getPairedDevices();
if (devices == null){
return;
}
if (devices.size() > 0) {
BluetoothDevice device = devices.iterator().next();
ConnectThread connectTransmit = new ConnectThread(device,bConfig.getBluetoothAdapter(),BluetoothConfig.mUUID);
connectTransmit.start();
Toast.makeText(this, "connected", Toast.LENGTH_SHORT).show();
socket = connectTransmit.mmSocket;
ConnectedThread connectedThread = new ConnectedThread(socket);
//write file bytes to the connected thread, so the thread can receive its own input written bytes later
File file_to_transfer = new File(Environment.getExternalStorageDirectory() + "/txtTransfer.txt");
//get bytes from our File
int size = (int) file_to_transfer.length();
byte[] bytes = new byte[size];
try {
//14b are read succesfully, the whole text file
BufferedInputStream buf = new BufferedInputStream(new FileInputStream(file_to_transfer));
buf.read(bytes,0,bytes.length);
buf.close();
}catch (FileNotFoundException e){
Log.d("FileNotFoundException:",e.getMessage());
}catch (IOException e){
Log.d("IOException:",e.getMessage());
}
//send the data to the server
connectedThread.start();
connectedThread.write(bytes);
//connectedThread.cancel();
}
}
...(some code here)
}
AcceptThread(实现的服务器部分)有效,因为当我运行客户端部分连接然后传输数据时,在设备中调试时,服务器部分上的 LogCat 激活并到达运行方法线程,我在其中调用ConnectedThread 实现,但随后它“显然”读取了字节,但它卡在 LogCat 上而没有错误。
请让我知道我可以做些什么来完成读取字节以移动到流程的下一部分。
谢谢
【问题讨论】:
标签: java android bluetooth data-transfer