任何人都可以举一个蓝牙服务器客户端(从安卓到计算机)的工作示例,它可以将文件或消息从一端传输到另一端?我使用 TCP 实现,但过去 2 天我无法成功使用蓝牙。
我从谷歌找到了一些文章,但我无法成功。从本教程中我自己尝试,但在onResume()中出现连接失败的异常。
我想将数据从我的android 手机传输到运行 Windows 7 的 PC。现在我使用下面的代码效果很好,因为从 logcat 我看到连接设置成功并完美读取数据,但它仍然不传输数据到我的电脑(可能无法写入这些数据)。
所以我的问题是,我是否缺少某些东西或需要这样的服务器端代码?或者任何人都可以建议一些应该成功地将消息或文件从客户端 android 传输到服务器 PC的代码?
我的代码:
Button btnSend = null;
TextView txtPath = null;
Socket s = null;
BluetoothAdapter objBluetoothAdapter = null;
BluetoothDevice device = null;
BluetoothSocket socket = null;
String strPath = "/sdcard/bluetooth/IMG0245A.jpg";
byte [] buffer = null;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
btnSend = (Button)findViewById(R.id.send_button);
btnSend.setOnClickListener(this);
}
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
String address="MY_COMPUTER_BLUETOOTH_ADDRESS";
objBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
if(objBluetoothAdapter==null){
Toast.makeText(this, "BT not supported", Toast.LENGTH_LONG);
return;
}
//objBluetoothAdapter.enable();
if(!objBluetoothAdapter.isEnabled()){
Intent enableBT = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivity(enableBT);
}
try{
device = objBluetoothAdapter.getRemoteDevice(address);
final UUID uuid= UUID.fromString("00001101-0000-1000-8000-00805F9B34FB");
try{
File f = new File(strPath);
buffer = new byte[(int)f.length()];
FileInputStream fis = new FileInputStream(f);
BufferedInputStream bis = new BufferedInputStream(fis);
bis.read(buffer,0,(int)f.length());
socket = device.createRfcommSocketToServiceRecord(uuid);
Log.d("BT","RF Connection Created"+socket);
//objBluetoothAdapter.startDiscovery();
for(int i=0;i<3;i++){
try{
objBluetoothAdapter.cancelDiscovery();
socket.connect();
Log.d("BT","Socket Connected = "+socket);
break;
}catch (Exception e) {
// TODO: handle exception
Log.d("BT","Socket Connection exception = "+e);
}
}
}catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
Log.d("BT","Connection NOT OK");
}
OutputStream os = socket.getOutputStream();
os.write(buffer);//,0,buffer.length);
os.flush();
os.close();
socket.close();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
Toast.makeText(this,"exception "+e, Toast.LENGTH_LONG);
}
}