在使用手机时,蓝牙通信给我们带来很多方便。那么在Android手机中怎样进行蓝牙开发呢?本文以实例的方式讲解Android蓝牙开发的知识。

       1、使用蓝牙的响应权限

XML/HTML代码
  1. <uses-permission android:name="android.permission.BLUETOOTH"/>      
  2. <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>   

       2、配置本机蓝牙模块

       在这里首先要了解对蓝牙操作一个核心类BluetoothAdapter。

Java代码
  1. BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter();       
  2.       
  3. //直接打开系统的蓝牙设置面板       
  4.       
  5. Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);       
  6.       
  7. startActivityForResult(intent, 0x1);       
  8.       
  9. //直接打开蓝牙       
  10.       
  11. adapter.enable();       
  12.       
  13. //关闭蓝牙       
  14.       
  15. adapter.disable();       
  16.       
  17. //打开本机的蓝牙发现功能(默认打开120秒,可以将时间最多延长至300秒)       
  18.       
  19. Intent discoveryIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);       
  20.       
  21. discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300);//设置持续时间(最多300秒)  

       3、搜索蓝牙设备

       使用BluetoothAdapter的startDiscovery()方法来搜索蓝牙设备。

       startDiscovery()方法是一个异步方法,调用后会立即返回。该方法会进行对其他蓝牙设备的搜索,该过程会持续12秒。该方法调用后,搜索过程实际上是在一个System Service中进行的,所以可以调用cancelDiscovery()方法来停止搜索(该方法可以在未执行discovery请求时调用)。

       请求Discovery后,系统开始搜索蓝牙设备,在这个过程中,系统会发送以下三个广播:

       ACTION_DISCOVERY_START:开始搜索
       ACTION_DISCOVERY_FINISHED:搜索结束
       ACTION_FOUND:找到设备,这个Intent中包含两个extra fields:EXTRA_DEVICE和EXTRA_CLASS,分别包含BluetooDevice和BluetoothClass。

       我们可以自己注册相应的BroadcastReceiver来接收响应的广播,以便实现某些功能。

Java代码
  1. // 创建一个接收ACTION_FOUND广播的BroadcastReceiver       
  2.       
  3. private final BroadcastReceiver mReceiver = new BroadcastReceiver() {       
  4.       
  5.     public void onReceive(Context context, Intent intent) {       
  6.       
  7.         String action = intent.getAction();       
  8.       
  9.         // 发现设备       
  10.       
  11.         if (BluetoothDevice.ACTION_FOUND.equals(action)) {       
  12.       
  13.             // 从Intent中获取设备对象       
  14.       
  15.             BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);       
  16.       
  17.             // 将设备名称和地址放入array adapter,以便在ListView中显示       
  18.       
  19.             mArrayAdapter.add(device.getName() + "\n" + device.getAddress());        
  20.         }        
  21.     }        
  22. };       
  23.       
  24. // 注册BroadcastReceiver       
  25.       
  26. IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND);       
  27.       
  28. registerReceiver(mReceiver, filter); // 不要忘了之后解除绑定     

       4、蓝牙Socket通信

       如果打算建议两个蓝牙设备之间的连接,则必须实现服务器端与客户端的机制。当两个设备在同一个RFCOMM channel下分别拥有一个连接的BluetoothSocket,这两个设备才可以说是建立了连接。

       服务器设备与客户端设备获取BluetoothSocket的途径是不同的。服务器设备是通过accepted一个incoming connection来获取的,而客户端设备则是通过打开一个到服务器的RFCOMM channel来获取的。

       服务器端的实现

       通过调用BluetoothAdapter的listenUsingRfcommWithServiceRecord(String, UUID)方法来获取BluetoothServerSocket(UUID用于客户端与服务器端之间的配对)。

       调用BluetoothServerSocket的accept()方法监听连接请求,如果收到请求,则返回一个BluetoothSocket实例(此方法为block方法,应置于新线程中)。

       如果不想在accept其他的连接,则调用BluetoothServerSocket的close()方法释放资源(调用该方法后,之前获得的BluetoothSocket实例并没有close。但由于RFCOMM一个时刻只允许在一条channel中有一个连接,则一般在accept一个连接后,便close掉BluetoothServerSocket)。

Java代码
  1. private class AcceptThread extends Thread {       
  2.       
  3.     private final BluetoothServerSocket mmServerSocket;        
  4.       
  5.     public AcceptThread() {       
  6.       
  7.         // Use a temporary object that is later assigned to mmServerSocket,       
  8.       
  9.         // because mmServerSocket is final       
  10.       
  11.         BluetoothServerSocket tmp = null;       
  12.       
  13.         try {       
  14.       
  15.             // MY_UUID is the app's UUID string, also used by the client code        
  16.             tmp = mBluetoothAdapter.listenUsingRfcommWithServiceRecord(NAME, MY_UUID);       
  17.         } catch (IOException e) { }        
  18.         mmServerSocket = tmp;        
  19.     }       
  20.        
  21.     public void run() {        
  22.         BluetoothSocket socket = null;       
  23.       
  24.         // Keep listening until exception occurs or a socket is returned       
  25.       
  26.         while (true) {        
  27.             try {        
  28.                 socket = mmServerSocket.accept();       
  29.             } catch (IOException e) {        
  30.                 break;       
  31.             }       
  32.       
  33.             // If a connection was accepted        
  34.             if (socket != null) {      
  35.                 // Do work to manage the connection (in a separate thread)       
  36.                 manageConnectedSocket(socket);        
  37.                 mmServerSocket.close();        
  38.                 break;       
  39.             }       
  40.         }        
  41.     }         
  42.       
  43.     /** Will cancel the listening socket, and cause the thread to finish */        
  44.     public void cancel() {        
  45.         try {        
  46.             mmServerSocket.close();        
  47.         } catch (IOException e) { }        
  48.     }        
  49. }  

       客户端的实现

       通过搜索得到服务器端的BluetoothService。

       调用BluetoothService的listenUsingRfcommWithServiceRecord(String, UUID)方法获取BluetoothSocket(该UUID应该同于服务器端的UUID)。

       调用BluetoothSocket的connect()方法(该方法为block方法),如果UUID同服务器端的UUID匹配,并且连接被服务器端accept,则connect()方法返回。

       注意:在调用connect()方法之前,应当确定当前没有搜索设备,否则连接会变得非常慢并且容易失败。

Java代码
  1. private class ConnectThread extends Thread {    
  2.     private final BluetoothSocket mmSocket;       
  3.       
  4.     private final BluetoothDevice mmDevice;       
  5.       
  6.        
  7.       
  8.     public ConnectThread(BluetoothDevice device) {       
  9.       
  10.         // Use a temporary object that is later assigned to mmSocket,       
  11.       
  12.         // because mmSocket is final       
  13.       
  14.         BluetoothSocket tmp = null;       
  15.       
  16.         mmDevice = device;       
  17.       
  18.        
  19.       
  20.         // Get a BluetoothSocket to connect with the given BluetoothDevice       
  21.       
  22.         try {       
  23.       
  24.             // MY_UUID is the app's UUID string, also used by the server code       
  25.             tmp = device.createRfcommSocketToServiceRecord(MY_UUID);       
  26.         } catch (IOException e) { }        
  27.         mmSocket = tmp;       
  28.     }       
  29.       
  30.        
  31.       
  32.     public void run() {       
  33.         // Cancel discovery because it will slow down the connection        
  34.         mBluetoothAdapter.cancelDiscovery();       
  35.         try {        
  36.             // Connect the device through the socket. This will block        
  37.             // until it succeeds or throws an exception        
  38.             mmSocket.connect();        
  39.         } catch (IOException connectException) {       
  40.       
  41.             // Unable to connect; close the socket and get out        
  42.             try {        
  43.                 mmSocket.close();       
  44.             } catch (IOException closeException) { }       
  45.              return;       
  46.         }       
  47.       
  48.           // Do work to manage the connection (in a separate thread)        
  49.         manageConnectedSocket(mmSocket);        
  50.     }        
  51.       
  52.     /** Will cancel an in-progress connection, and close the socket */       
  53.      public void cancel() {       
  54.         try {        
  55.             mmSocket.close();       
  56.       
  57.         } catch (IOException e) { }       
  58.      }        
  59. }   

       5、连接管理(数据通信)

       分别通过BluetoothSocket的getInputStream()和getOutputStream()方法获取InputStream和OutputStream。

       使用read(bytes[])和write(bytes[])方法分别进行读写操作。

       注意:read(bytes[])方法会一直block,知道从流中读取到信息,而write(bytes[])方法并不是经常的block(比如在另一设备没有及时read或者中间缓冲区已满的情况下,write方法会block)。

Java代码
  1. private class ConnectedThread extends Thread {       
  2.       
  3.     private final BluetoothSocket mmSocket;       
  4.       
  5.     private final InputStream mmInStream;       
  6.       
  7.     private final OutputStream mmOutStream;       
  8.       
  9.        
  10.       
  11.     public ConnectedThread(BluetoothSocket socket) {       
  12.       
  13.         mmSocket = socket;       
  14.       
  15.         InputStream tmpIn = null;       
  16.       
  17.         OutputStream tmpOut = null;       
  18.       
  19.        
  20.       
  21.         // Get the input and output streams, using temp objects because       
  22.       
  23.         // member streams are final       
  24.       
  25.         try {       
  26.       
  27.             tmpIn = socket.getInputStream();       
  28.       
  29.             tmpOut = socket.getOutputStream();       
  30.       
  31.         } catch (IOException e) { }       
  32.       
  33.        
  34.       
  35.         mmInStream = tmpIn;       
  36.       
  37.         mmOutStream = tmpOut;       
  38.       
  39.     }       
  40.       
  41.        
  42.       
  43.     public void run() {       
  44.       
  45.         byte[] buffer = new byte[1024];  // buffer store for the stream       
  46.       
  47.         int bytes; // bytes returned from read()       
  48.       
  49.        
  50.       
  51.         // Keep listening to the InputStream until an exception occurs       
  52.       
  53.         while (true) {       
  54.       
  55.             try {       
  56.       
  57.                 // Read from the InputStream       
  58.       
  59.                 bytes = mmInStream.read(buffer);       
  60.       
  61.                 // Send the obtained bytes to the UI Activity       
  62.       
  63.                 mHandler.obtainMessage(MESSAGE_READ, bytes, -1, buffer)       
  64.       
  65.                         .sendToTarget();       
  66.       
  67.             } catch (IOException e) {       
  68.       
  69.                 break;       
  70.       
  71.             }       
  72.       
  73.         }       
  74.       
  75.     }       
  76.       
  77.        
  78.       
  79.     /* Call this from the main Activity to send data to the remote device */       
  80.       
  81.     public void write(byte[] bytes) {       
  82.       
  83.         try {       
  84.       
  85.             mmOutStream.write(bytes);       
  86.       
  87.         } catch (IOException e) { }       
  88.       
  89.     }       
  90.       
  91.        
  92.       
  93.     /* Call this from the main Activity to shutdown the connection */       
  94.       
  95.     public void cancel() {       
  96.       
  97.         try {       
  98.       
  99.             mmSocket.close();       
  100.       
  101.         } catch (IOException e) { }       
  102.       
  103.     }       
  104.       
  105. }      

 

本文发布:Android开发网
本文地址:http://www.jizhuomi.com/android/example/242.html
2012年10月20日
发布:鸡啄米 分类:Android开发实例 浏览: 评论:0