The following code sample shows you how to use the DiscoveryAgent to search for an OBEX Push bluetooth service. It first searches for all available Bluetooth Devices, and prompts to select a device on which to search the OBEX Push Service.
For this sample to work, you need a JSR-82 Implmentation (Java Bluetooth Stack) like ElectricBlue or aveLink in the class path.
-
import java.io.BufferedReader;
-
import java.io.IOException;
-
import java.io.InputStreamReader;
-
import java.util.Vector;
-
-
import javax.bluetooth.DeviceClass;
-
import javax.bluetooth.DiscoveryAgent;
-
import javax.bluetooth.DiscoveryListener;
-
import javax.bluetooth.LocalDevice;
-
import javax.bluetooth.RemoteDevice;
-
import javax.bluetooth.ServiceRecord;
-
import javax.bluetooth.UUID;
-
-
/**
-
*
-
* Class that discovers all bluetooth devices in the neighbourhood,
-
*
-
* Connects to the chosen device and checks for the presence of OBEX push service in it.
-
* and displays their name and bluetooth address.
-
*
-
*
-
*/
-
public class BluetoothServiceDiscovery implements DiscoveryListener{
-
-
//object used for waiting
-
-
//vector containing the devices discovered
-
-
-
-
/**
-
* Entry point.
-
*/
-
-
BluetoothServiceDiscovery bluetoothServiceDiscovery=new BluetoothServiceDiscovery();
-
-
//display local device address and name
-
LocalDevice localDevice = LocalDevice.getLocalDevice();
-
-
//find devices
-
DiscoveryAgent agent = localDevice.getDiscoveryAgent();
-
-
agent.startInquiry(DiscoveryAgent.GIAC, bluetoothServiceDiscovery);
-
-
try {
-
synchronized(lock){
-
lock.wait();
-
}
-
}
-
e.printStackTrace();
-
}
-
-
-
-
//print all devices in vecDevices
-
int deviceCount=vecDevices.size();
-
-
if(deviceCount <= 0){
-
}
-
else{
-
//print bluetooth device addresses and names in the format [ No. address (name) ]
-
for (int i = 0; i <deviceCount; i++) {
-
RemoteDevice remoteDevice=(RemoteDevice)vecDevices.elementAt(i);
-
System.out.println((i+1)+". "+remoteDevice.getBluetoothAddress()+" ("+remoteDevice.getFriendlyName(true)+")");
-
}
-
}
-
-
-
-
//check for obex service
-
RemoteDevice remoteDevice=(RemoteDevice)vecDevices.elementAt(index-1);
-
UUID[] uuidSet = new UUID[1];
-
uuidSet[0]=new UUID("1105",true);
-
-
agent.searchServices(null,uuidSet,remoteDevice,bluetoothServiceDiscovery);
-
-
try {
-
synchronized(lock){
-
lock.wait();
-
}
-
}
-
e.printStackTrace();
-
}
-
-
if(connectionURL==null){
-
}
-
else{
-
}
-
}
-
-
-
/**
-
* Called when a bluetooth device is discovered.
-
* Used for device search.
-
*/
-
public void deviceDiscovered(RemoteDevice btDevice, DeviceClass cod) {
-
//add the device to the vector
-
if(!vecDevices.contains(btDevice)){
-
vecDevices.addElement(btDevice);
-
}
-
}
-
-
-
/**
-
* Called when a bluetooth service is discovered.
-
* Used for service search.
-
*/
-
public void servicesDiscovered(int transID, ServiceRecord[] servRecord) {
-
if(servRecord!=null && servRecord.length>0){
-
connectionURL=servRecord[0].getConnectionURL(0,false);
-
}
-
synchronized(lock){
-
lock.notify();
-
}
-
}
-
-
-
/**
-
* Called when the service search is over.
-
*/
-
public void serviceSearchCompleted(int transID, int respCode) {
-
synchronized(lock){
-
lock.notify();
-
}
-
}
-
-
-
/**
-
* Called when the device search is over.
-
*/
-
public void inquiryCompleted(int discType) {
-
synchronized(lock){
-
lock.notify();
-
}
-
-
}//end method
-
-
-
}//end class
No comments:
Post a Comment