美文网首页
BluetoothSocket

BluetoothSocket

作者: NullUser | 来源:发表于2017-05-09 23:36 被阅读0次

    BluetoothServerSocket

    public BluetoothServerSocket listenUsingRfcommonWithServiceRecord(String name, UUID uuid);
    

    作用 : 创建一个监听Rfcommon端口的蓝牙监听, 使用accept()方法监听, 并获取BluetoothSocket对象; 该系统会根据一个服务名称(name)和唯一的识别码(uuid)来创建一个SDP服务, 远程蓝牙设备可以根据唯一的UUID来连接这个SDP服务器;

    参数 : name : SDP服务器名称, UUID, SDP记录下的UUID;

    返回值 : 正在监听蓝牙端口;

    权限 : BLUETOOTH;

    BluetoothSocket

    public BluetoothSocket createRfcommSocketToServiceRecord (UUID uuid);
    

    作用 : 创建BluetoothSocket连接对象, 该方法创建的BluetoothSocket连接对象与 BluetoothAdapter的listenUsingRfcommWithServiceRecord方法创建的BluetoothServerSocket连接是对应的, 调用BluetoothSocket对象的connect()方法创建一个连接, 通过UUID执行对应信道的SDP查找动作;

    如果两个安卓手机之间进行连接需要生成专用的UUID, 如果是对蓝牙串口进行连接, 就使用总所周知的SPP UUID 00001101-0000-1000-8000-00805F9B34FB


    参数 : 用来识别远程蓝牙设备的UUID, 该UUID用来查询RFCOMM通道的服务记录;
    返回值 : 创建的BluetoothSocket连接对象

    相关文章

      网友评论

          本文标题:BluetoothSocket

          本文链接:https://www.haomeiwen.com/subject/tkzmtxtx.html