Open Source Java Bluetooth API (JSR-82) implementation for various Bluetooth stacks on Windows, Linux, Mac OSX and Windows Mobile devices

learn more… | top users | synonyms

10
votes
2answers
5k views

Send text through Bluetooth from Java Server to Android Client

First of all... don't redirect me to Bluetooth Chat and I have fully read it. I have an Android Client which stablishes the connection properly with the server, and what's most I can send text to the ...
9
votes
2answers
5k views

Send data from android bluetooth to PC with bluecove

I'm trying to send data from android (using API from its SDK) to a PC using Bluecove on windows, being this last one the server. I can get the android to connect to the server but when I write to ...
7
votes
2answers
975 views

BlueCove, Laptop, and an Android tablet with Bluetooth

I'm trying to get the basics of using Bluetooth through a simple application. I'd also like a laptop application so I can debug Bluetooth comms simply. The code below is my attempt with the laptop ...
6
votes
1answer
2k views

Bluetooth client/server communication between computer and mobile phone

I need just a basic example or tutorial of making a mobile phone and a computer communicate via Bluetooth. A good link/website to start from is also appreciated. Server part (computer part) can be ...
5
votes
2answers
880 views

Can you establish multiple Bluetooth connections between the same two devices in Android?

I have two Android devices. One is acting as a server and the other as a client. The client connects to the server and requests a file - this is done in one thread on the client and one thread on the ...
5
votes
2answers
760 views

Sending a string via bluetooth from a PC as client to a mobile as server

I'm a Bluetooth Newbie and really need your help. I've been stucked with this question for some days now and searching the internet and stackoverflow, but can't really find what I'm looking for. I ...
4
votes
1answer
2k views

How do I use BlueCove to use Bluetooth on a MacBook with Java?

I would like to implement an Java application that uses Bluetooth on my MacBook Air laptop. I try to use the Java bluetooth library BlueCove. I tried to implement the first example DeviceDiscovery ...
4
votes
0answers
30 views

Bluecove Close connection issue

I use Bluecove 2.1.1 and trying to restart bluetooth service, but after closing connection and reopening I can't connect to service, I got "Connection refused" exception. I found this issue on ...
3
votes
2answers
7k views

Forcing 64 bit jvm to 32 bit jvm?

Would anyone please give me ideas about forcing 64 bit jvm to run as 32-bit jvm? I need to write a jse desktop application for bluetooth connection. For that i need to implement Bluecove jar . It has ...
3
votes
1answer
110 views

debian bluetooth bluecove java7 not working

I have a clean Debian squeeze installation and trying to get a jar app running that would communicated with the bluetooth dongle in the usb port. Hardware side all runs fine bluetooth functionality ...
2
votes
1answer
1k views

Why am I losing bluetooth client/server connection?

I am trying to connect from a desktop application (written in Java) to a Android application through Bluetooth. For the desktop application I am using BlueCove API. When I start the server (desktop ...
2
votes
2answers
557 views

Access Android's OBEX server and read data

I was wondering if it's possible to read data (contacts, missed calls, etc.) from Android's OBEX server from windows with Bluecove. I tried the following code from windows, but it returns ...
2
votes
0answers
257 views

unable to connect to bluetooth socket on android

I am trying to sent message from android client to Mac OS X over bluetooth. I am using bluecove 2.0.1 Java bluetooth library on Mac OS X Snow Leopard. Code for Server: public class EchoServer2 { ...
2
votes
0answers
314 views

pc to pc via bluetooth using bluecove

There is plenty of examples on the internet showing how to write an app that allows us to e.g. communicate pc from a mobile phone via bluetooth. But what I am trying to do is to control one pc from ...
2
votes
0answers
673 views

Bluecove: SERVICE_SEARCH_DEVICE_NOT_REACHABLE issue

I try to connect to a custom Bluetooth device using BlueCove. I can pair the device, but when I try to search for services I always get SERVICE_SEARCH_DEVICE_NOT_REACHABLE in serviceSearchCompleted() ...
1
vote
1answer
5k views

BlueCove library bluecove not available - Error using Bluecove/Java

How do I install Bluecove in Ubuntu 11/Eclipse IDE? As far as i was aware, all I had to do was add the bluecove.jar and bluecove-gpl.jar to the Build-Path of the project within Eclipse. I'm using ...
1
vote
1answer
548 views

Android + Bluetooth (Bluecove) - need to close the OutputStream to actually write data

I've got Android device acting as a client, the PC is a Bluetooth Server, using Bluecove library Code snippet from the client: btSocket = serverBt.createRfcommSocketToServiceRecord(myUuid); ...
1
vote
1answer
276 views

Error!: Duplicate definition for 'javax.bluetooth.BluetoothConnectionException'

I have seen a similar problem here for example , but i am not trying to acces to Java SE features.. I have a .jar file with the code of a bluetooth functionality.. I try to make a .jar package that ...
1
vote
0answers
41 views

How restart bluetooth service in bluecove?

I have desktop and android applications, which connected by bluetooth(in desktop side I use Bluecove 2.1.1 library). Desktop application create bluetooth service then android application connects to ...
1
vote
0answers
137 views

Keeping Java Bluetooth connection alive

I’m building a simple Java Bluetooth server for my computer using the Bluecove API. I’m building an Android client side app as well but the problem seems to be stemming from the server side app. I’m ...
1
vote
0answers
159 views

A socket operation wasattempted to an unreachable network, using bluetooth

I've followed a blog article about making an application which finds Bluetooth devices and by selecting a file we can upload it to phone. web article link: ...
1
vote
0answers
198 views

Create a Bluetooth proxy with bluecove and BlueSoleil stack

I have the library http://code.google.com/p/bluecove/ and I have installed BlueSoleil http://www.bluesoleil.com/index.aspx and a compatible bluetooth dongle. I want to create a Java application ...
1
vote
0answers
53 views

Exception in org.java.bluetooth.sprime.SimpleSPPClient

I've been trying to operate the Sprime Bluetooth server and client application found on http://sprime.googlecode.com/svn/trunk/sprime-bt/src/org/java/bluetooth/sprime/ but the problem is that when I ...
1
vote
0answers
269 views

bluecove - Send message to formerly unpaired device

I have to send message from my (Ubuntu-12.04, 64-bit) laptop to a Bluetooth phone whose friendly name is provided as an argument. This phone may or may not have connected/paired with the laptop ...
1
vote
0answers
408 views

My Java bluetooth server on raspberry pi running debian wheezy needs bluecove native library - where can I find it?

I have a Java bluetooth server running on a Windows box which I want to port to the Raspberry pi. I have lots of experience with Java but little with Bluetooth or Linux. The pi currently has Debian ...
1
vote
1answer
251 views

Establishing a simulated bluetooth connection

I'd like to establish a simulated Bluetooth connection between two Java programs running on the same machine. I am writing to program that uses BlueCove's BT library to connect to a hardware device; I ...
1
vote
0answers
404 views

where should i place bluecove-2.1.0 folder

I am trying to write a project that communicates with a Bluetooth device and receives information from it. I googled it and from what I understood I had to get a package named 'bluecove' which will ...
1
vote
1answer
2k views

Android Bluetooth: Service Discovery Failed, connection to Desktop/Laptop

I have an Android app that I had working a few months ago which I could use to connect my Droid X2 to an ASUS Transformer tablet over Bluetooth. That connection worked fine. I just finished coding ...
1
vote
1answer
213 views

can't detect bluetooth service ( java.lang.NumberFormatException: For input string: “0S” )

Hello i'want to detect the serial port bluetooth service of an external bluetooth device from my computer, for that i'm using the Bluecove API and the following code : BluetoothDeviceDiscovery ...
1
vote
1answer
403 views

Can't detect bluetooth devices with bluecove

I'm trying to show the list of bluetooth devices associated with my PC using bluecove, but it just keep scaning without finding anything, it shows this message on the terminal: BlueCove version ...
1
vote
0answers
120 views

How can I make a “hello world” with bluecove-android2?

Does anyone have any good example to share for making a first "hello world" with bluecove-android2? I didn't find anything on Google. How should I use it?
1
vote
2answers
3k views

Java JSR-82 Implementation (javax.Bluetooth.*) - Using Bluecove

I am searching for some help with JSR-82. I have searched for a long time, and even had my project supervisor at uni helping me out, and so far, I have had no luck. My Problem... I have a project ...
0
votes
1answer
881 views

Bluetooth in java (J2SE)

I am a newbie to bluetooth and this is the thing i want to do , I want to to get the device information that gets connected to the Bluetooth on my pc and write the info in a file. which api should i ...
0
votes
1answer
17 views

Can I debug bluecove library?

I see that Bluecove is open source, but there aren't any .pro files in sources. How can I open sources in eclipse and debug?
0
votes
1answer
331 views

Bluecove for ARMv6/ Raspberry Pi - help please

I'm having some difficulty running a leJOS pc program on my Raspberry Pi.. It works on my PC no problem. I get an error stating: "Native Library bluecove_arm not available" Bluetooth works fine ...
0
votes
2answers
142 views

Problems compiling and running Java app with Bluecove (NoClassDefFoundError)

I have this app that uses bluetooth, so I need both, bluecove and bluecove-gpl packages, when I run it in NetBeans I have no problem at all, and works perfectly fine. But I still can't compile and run ...
0
votes
1answer
169 views

java bluetooth Limited Dedicated Inquiry Access Code (LIAC)

We have a device that is discoverable only in Limited Inquiry Access. There is a second device with a firmware that can talk to this device. We are trying to connect to this device from a computer ...
0
votes
1answer
496 views

Implementing BlueCove in Android

Has anyone successfully worked with BlueCove in Android? I've tried to add bluecove.jar in my project but i get the message: The library 'bluecove-2.1.0.jar' contains native libraries that will not ...
0
votes
1answer
2k views

Java Bluetooth API

I want to implement bluetooth communication on my final bachelor project, but I'm having a lot of doubts. One of the requisites of this project is to have a Java application that can talk to the ...
0
votes
0answers
20 views

Installing bluecove onto Windows 7 x64

I have searched and searched and I cannot find a definitive answer to help me understand what it is all doing. So essentially, I want to connect my bluetooth enabled device to my computer, I achieve ...
0
votes
0answers
31 views

How launch bluecove programmically

I'm trying to lunch bluetooth stack manually(after closing bluetooh stack). I look after BlueCoveImpl.java and find out that bluetooth stack initialized in private BluetoothStack detectStack() ...
0
votes
0answers
25 views

Restart application with external jars (especially bluecove jar)

I want to restart the whole program with all related jar files. The main problem connected with this, but seems no one has workaround for it. I notice that reopening application solve that problem, so ...
0
votes
1answer
24 views

Bluecove : restart bluetooth stack programmically

I'm trying to close bluetooth service, but Bluecove has bug on Connection close method (https://code.google.com/p/bluecove/issues/detail?id=90) and I am trying to do some workaround to restart ...
0
votes
0answers
97 views

sending text from pc to android

I have some problem with sending text from pc to android server. I would like to do next: 1. I sending text from android to pc 2. And then I recieved in pc that I sending from android 3. And then I ...
0
votes
0answers
24 views

how to list the files of a remote windows pc using Bluetooth?

I have this code: try{ String btURL = "btgoep://0013FD94B84F:10;authenticate=false;encrypt=false;master=false"; String folder = "Nikos"; ClientSession conn = (ClientSession) Connector.open(btURL); ...
0
votes
0answers
51 views

BluetoothConnectionException / failing to connect to a bluetooth device

I can't get my java application to connect to a specific bluetooth device. The device is a self build thing and works fine. Until now, my application used a serial port connection to the device, ...
0
votes
0answers
44 views

Bluetooth to PC: Device, port & UUID

I'm working on an app on Android that is supposed to connect to a custom device via Bluetooth, but in order to emulate that device (which I don't have yet), I made a simulator on PC, using Java's ...
0
votes
0answers
50 views

bluecove app is not working

I am trying to create a desktop bluetooth application using bluecove. I have downloaded the bluecove snapshot and imported it to my project in eclipse. When the program is executed inside eclipse it ...
0
votes
0answers
120 views

Remove paired devices from Bluetooth device discovery program output

I used the code given here to find devices with active bluetooth around my laptop(using Bluecove API). Surprisingly, it gave me the devices also which are already paired with my laptop also. Now the ...
0
votes
1answer
131 views

Bluetooth on Android not sending messages

I have followed Google's tutorial on using Bluetooth on Android. On the server side which is a computer I've used Bluecove. I have managed to establish the connection between the devices (they ...

1 2