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

0
votes
1answer
336 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
0answers
24 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 ...
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 ...
0
votes
1answer
25 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
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
0answers
32 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
28 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
0answers
102 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
1answer
167 views

BlueCove for Windows 7

Does anybody know if Bluecove for Java works with Wiondows 7 32 bit? I have tried to connect a wiimote to my computer via bluetooth and it is unable to connect after I paired the device. I know that ...
0
votes
0answers
25 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); ...
4
votes
0answers
33 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 ...
1
vote
0answers
42 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 ...
0
votes
0answers
52 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
1answer
108 views

bluecove on windows vista

I am trying to connect to a remote device via Winsock on Windows Vista, but am getting this error: javax.bluetooth.BluetoothConnectionException: at ...
0
votes
0answers
46 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 ...
1
vote
0answers
410 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 ...
5
votes
2answers
773 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 ...
7
votes
2answers
977 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 ...
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 ...
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 ...
0
votes
0answers
122 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 ...
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 ...
1
vote
0answers
138 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 ...
0
votes
1answer
132 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 ...
0
votes
1answer
119 views

Java and Bluetooth - totally dead? [closed]

I've planned to do a program where text messages are sent from an Android phone to a computer. I thought it would be simple to use Bluetooth but no. I can't find any material from these days. All of ...
1
vote
0answers
160 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
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
200 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 ...
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 ...
0
votes
2answers
630 views

Java - Bluetooth API Bluecove Issue

I'm having an issue using the Bluecove API in Java. I plan to create a basic BT listener in order to receive some data from a homemade device (Arduino powered). I've the following code which is quite ...
2
votes
0answers
258 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 { ...
1
vote
1answer
552 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); ...
0
votes
0answers
89 views

Bluecove bluetooth java error

I am using bluecove on mac os 10.6.8 with 32-bit Java SE 1.6 I am getting error in the following line StreamConnection connection = streamConnNotifier.acceptAndOpen(); I am trying to connect to ...
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 ...
0
votes
1answer
209 views

Win7 x64 Bluecove

I'm trying to use Bluecove for an application I'm writing. Version 2.1 of the jar didn't work, so a little Google showed me that it had always had issues with x64, so I turned to the latest 2.1.1 ...
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 ...
5
votes
2answers
884 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 ...
0
votes
0answers
278 views

Ios ExternalAccessory bluetooth problems

I am having some difficulties getting ExternalAccessory running for my ipod... I have a bluecove bluetooth listener running on my computer (mac, Mountain Lion) in java (Code for that here: ...
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
297 views

Authentication in Bluecove - Linux x64 not working

I'm having troubles trying to authenticate a BT device in a pairing process using Bluecove (both bluecove and bluecove-gpl 2.1.1 SNAPSHOT libraries) in Linux x64 with 64 bits JVM. While discovery ...
0
votes
1answer
106 views

Bluetooth - Put Device in inquiry mode permanently

I want to know if it is possible to put a device in inquiry mode permanently, using blue cove. Here is the code actually, it only puts the device in inquiry for a short period of time. public class ...
0
votes
0answers
951 views

send files from pc to mobile via bluetooth in java without pairing

I'm developing a desktop application using java to send a file to devices around. It's done but I have a problem, a pairing message appears in mobile device when a send operation tries to begin.My app ...
0
votes
2answers
479 views

Bluecove on PC cannot detect connected android (galaxy tab 7.0)

I use this code luugiathuy.com/2011/02/android-java-bluetooth/ The server side is the PC the client is the device, with the app based on bluetooth chat example The device (galaxy tab 7.0) can ...
0
votes
1answer
247 views

Failed to connect [10048]

I've got this code on a button, when I press it I get the Error: Error: Exception connecting to NXT. Caused by lejos.pc.comm.NXTCommException: Open of NXT failed. at ...
2
votes
2answers
558 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 ...
0
votes
0answers
216 views

how can bluecove be used in android ?some examples?

I want to transfer files between pc and Android by using bluecove and bluecove Android 2.0 It is ok to compile the project and install the apk to the Android.but it seems not run on android ...
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 ...
2
votes
0answers
316 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 ...
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
405 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 2