2011-12-10 69 views
1

我想,以顯示與使用bluecove我的PC相關的藍牙設備的列表,但它只是保持scaning沒有找到任何藍牙設備,它顯示在終端上這樣一條消息:無法檢測與bluecove

BlueCove version 2.1.0 on winsock 

並保持不顯示任何設備。

這裏是我使用的代碼:

BluetoothDeviceDiscovery bluetoothDeviceDiscovery=new BluetoothDeviceDiscovery(); 
     //display local device address and name 
     LocalDevice localDevice = LocalDevice.getLocalDevice(); 
     System.out.println("Address: "+localDevice.getBluetoothAddress()); 
     System.out.println("Name: "+localDevice.getFriendlyName()); 
     //find devices 
     DiscoveryAgent agent = localDevice.getDiscoveryAgent(); 

我認爲這是在本地設備中的問題,因爲它甚至沒有顯示本地設備的ADRESS。

回答