Ive made an Android app.(client) which sends a string as a message to PC server through Bluetooth..Im using bluecove 2.1 library at my server side..Bt my server does not respond to the string i sent i.e it does nt display the string after recognizing the device it shows only null after i disconnect my android bluetooth and end the application...ne suggestions??? It shows the device address and the device friendly name.. My PC server supports winsock and broadcomm/widcomm bluetooth stacks... Here's my code...
Android Client.java
package co.android.scorbot;
import android.os.AsyncTask;
import android.os.Bundle;
import android.bluetooth.*;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import java.io.IOException;
import java.io.OutputStream;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.*;
import android.util.Log;
import android.view.*;
import android.view.View.OnClickListener;
import android.widget.*;
public class Connection extends ScorbotActivity {
public static BluetoothSocket socket;
protected BluetoothAdapter bluetooth;
protected final UUID uuid= UUID.fromString("a60f35f0-b93a-11de-8a39-08002009c666");
ArrayList<BluetoothDevice> founddevices = new ArrayList<BluetoothDevice>();
protected OutputStream outputStream;
private static final String TAG = "BluetoothChat";
private static final boolean D = true;
private ArrayAdapter<BluetoothDevice> aa;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.connection);
configureBluetooth();
setupSearchButton();
}
public void configureBluetooth(){
bluetooth=BluetoothAdapter.getDefaultAdapter();
if(D) Log.e(TAG, "++ ON START ++");
// If BT is not on, request that it be enabled.
// setupChat() will then be called during onActivityResult
if (!bluetooth.isEnabled()) {
Intent enableIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(enableIntent,3);
}
}
public void switchUI(){
Button b1=(Button) findViewById(R.id.Button2);
b1.setVisibility(View.VISIBLE);
b1.setOnClickListener(new OnClickListener() {
public void onClick(View view){
startActivity(new Intent(Connection.this,Emulator.class));
}
});
}
public void setupListView(){
aa=new ArrayAdapter<BluetoothDevice>(this,R.layout.menu_list_text,founddevices);
ListView list=(ListView) findViewById(R.id.List_layout1);
list.setAdapter(aa);
list.setOnItemClickListener(new AdapterView.OnItemClickListener(){
public void onItemClick(AdapterView<?> parent,View view,int index,long id){
AsyncTask<Integer,Void,Void> connecttask=new AsyncTask<Integer,Void,Void>(){
protected Void doInBackground(Integer... params){
try{
BluetoothSocket tmp;
BluetoothDevice device = founddevices.get(params[0]);
bluetooth.cancelDiscovery();
for (Integer port = 1; port <= 3; port++) {
Method m = device.getClass().getMethod("createRfcommSocket", new Class[] {int.class});
socket = (BluetoothSocket) m.invoke(device,Integer.valueOf(port));
tmp=socket;
tmp.connect();
Log.e(TAG, "BLUETOOTH_CLIENT");
}
// until here everything's fine after that the no response
try
{
outputStream = socket.getOutputStream();
String message = "Data from Android and tester program!\n";
outputStream.write(message.getBytes());
outputStream.flush();
}
finally{
outputStream.close();
}
}
catch (IOException ex) {
Log.d("BLUETOOTH_CLIENT", ex.getMessage());
}catch (NoSuchMethodException ex) {
Log.e(this.toString(), "NoSuchMethodException " + ex.getMessage());
} catch (IllegalAccessException ex) {
Log.e(this.toString(), "IllegalAccessException " + ex.getMessage());
} catch (InvocationTargetException ex) {
Log.e(this.toString(),"InvocationTargetException " + ex.getMessage());
}
return null;
}
@Override
protected void onPostExecute(Void result) {
switchUI();
}
};
connecttask.execute(index);
}
});
}
public void setupSearchButton(){
Button b2=(Button) findViewById(R.id.Button1);
b2.setOnClickListener(new OnClickListener() {
public void onClick(View view){
registerReceiver(discover,new IntentFilter(BluetoothDevice.ACTION_FOUND));
setupListView();
if(!bluetooth.isDiscovering()){
founddevices.clear();
bluetooth.startDiscovery();
}
}
});
}
BroadcastReceiver discover=new BroadcastReceiver(){
public void onReceive(Context context,Intent intent){
BluetoothDevice remotedevice;
// When discovery finds a device
remotedevice=intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
if(bluetooth.getBondedDevices().contains(remotedevice)){
founddevices.add(remotedevice);
aa.notifyDataSetChanged();
}
}
};
protected void onActivityResult(int requestcode,int resultcode,Intent intent)
{
super.onActivityResult(requestcode,resultcode,intent);
if(requestcode==1)
{
if(resultcode==RESULT_CANCELED)
Connection.this.finish();
}
}
protected void onDestroy() {
super.onDestroy();
// Make sure we're not doing discovery anymore
if (bluetooth != null) {
bluetooth.cancelDiscovery();
}
// Unregister broadcast listeners
this.unregisterReceiver(discover);
}
}
PCServer.java
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import javax.bluetooth.BluetoothStateException;
import javax.bluetooth.DiscoveryAgent;
import javax.bluetooth.LocalDevice;
import javax.bluetooth.RemoteDevice;
import javax.microedition.io.Connector;
import javax.microedition.io.StreamConnection;
import javax.microedition.io.StreamConnectionNotifier;
public class SocketServer {
private static LocalDevice mLocalDevice;
private static StreamConnectionNotifier connectionNotifier;
public static void main(String[] args) throws IOException, InterruptedException {
try
{ System.setProperty("bluecove.stack.first", "widcomm");
System.out.println(LocalDevice.getProperty("bluecove.stack"));
connectionNotifier =
(StreamConnectionNotifier) Connector.open("btspp://localhost:" +
"a60f35f0b93a11de8a3908002009c666;name=SCORBOT;" +
"authenticate=false;encrypt=false;master=false");
while(true){
new SocketServer().start();
}
} catch (BluetoothStateException e) {
System.out.println("Bluetooth not enabled!\nPlease enable your bluetooth first!");
}
}
public SocketServer() throws IOException {
mLocalDevice = LocalDevice.getLocalDevice();
mLocalDevice.setDiscoverable(DiscoveryAgent.GIAC);
System.out.println("accepting on " + mLocalDevice.getBluetoothAddress());
}
public void start() throws IOException {
StreamConnection streamConnection = connectionNotifier.acceptAndOpen();
RemoteDevice dev = RemoteDevice.getRemoteDevice(streamConnection);
System.out.println("Remote device address: "+dev.getBluetoothAddress());
System.out.println("Remote device name: "+dev.getFriendlyName(true));
//read string from spp client
InputStream inStream=streamConnection.openInputStream();
BufferedReader bReader=new BufferedReader(new InputStreamReader(inStream));
String lineRead=bReader.readLine();
System.out.println(lineRead);
}
}