Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to write a simple script in Java to read data from a bluetooth device that spits out a constant stream of data. I know the device is working, because I can solve my problem using Python, but I want to use Java eventually.

I have some sample code, but it hangs on the read command.

// Ref http://homepages.ius.edu/rwisman/C490/html/JavaandBluetooth.htm
import java.io.*;
import javax.microedition.io.*;
//import javax.bluetooth.*;

public class RFCOMMClient {
    public static void main(String args[]) {
    try {
        StreamConnection conn = (StreamConnection) Connector.open(
        "btspp://00078093523B:2", Connector.READ, true);

        InputStream is = conn.openInputStream();

        byte buffer[] = new byte[8];
        try {
            int bytes_read = is.read(buffer, 0, 8);
            String received = new String(buffer, 0, bytes_read);
            System.out.println("received: " + received);
        } catch (IOException e) {
            System.out.println(" FAIL");
            System.err.print(e.toString());
        }
        conn.close();
    } catch (IOException e) {
        System.err.print(e.toString());
    }
}

}

Note that the problem seems to be that the read() call believes there is no data available. However, the bluetooth device constantly spits out data (it is a sensor). Here is my Python code which does work:

In [1]: import bluetooth

In [2]: address = "00:07:80:93:52:3B"

In [3]: s = bluetooth.BluetoothSocket(bluetooth.RFCOMM)

In [4]: s.connect((address,1))

In [5]: s.recv(1024)
Out[5]: '<CONFIDENTIALDATAREMOVED>'

Please help,

Thanks!

share|improve this question

1 Answer

read will block and wait for data; a better idiom would be to use available():

int bytesToRead = is.available();
if(bytesToRead > 0)
    is.read(buffer, 0, bytesToRead);
else
    // wait for data to become available
share|improve this answer
Thanks. Hmmm... available() returns 0, so it doesn't read anything. However, the device constantly spits out data (it is a sensor). Here is my python code that I tried right after running the Java code: In [1]: import bluetooth In [2]: address = "00:07:80:93:52:3B" In [3]: s = bluetooth.BluetoothSocket(bluetooth.RFCOMM) In [4]: s.connect((address,1)) In [5]: s.recv(1024) Out[5]: 'CONFIDENTIALDATAREMOVED' – doc Sep 14 '11 at 11:19
Hmm. Try using openDataInputStream() instead of openInputStream() and see if the behaviour changes? Can't think that it would but it's worth a shot. – mcfinnigan Sep 14 '11 at 11:30
Result is not different. :/ – doc Sep 14 '11 at 17:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.