鸿蒙的经典蓝牙(2.0)通信在API8前还没有开放 ,只能用反射方式调
鸿蒙的经典蓝牙通信在API8前还没有开放,只能用反射方式调用Socket的构造函数在API8会开放为公共接口,sdk版本如果是API7可以用DataListenObj的方法调用例如调用DataListenSocket.的dataListenInsecureRfcomm方法如下ObjectdataListenObjDataListenSocket.class.newInstance();MethodlistenInsecureRfcommDataListenSocket.class.getDeclaredMethod("dataListenInsecureRfcomm",String.class,UUID.class);listenInsecureRfcomm....