1

i got a program that send file to mobile device. After opening it in the NetBeans IDE it shows error in the lines shown below

import javax.obex.ClientSession;
import javax.obex.HeaderSet;
import javax.obex.Operation;

it shows error as package does not exist. what should i do to correct this error ?

Vishnu Pradeep
  • 2,087
  • 2
  • 29
  • 56

2 Answers2

3

findJAR is a useful JAR search engine that will help you find jars containing a specified class.

Just search for javax.obex.ClientSession and it will tell you that it is present in bluecove-2.1.0.jar and also where you can download the jar from.

dogbane
  • 266,786
  • 75
  • 396
  • 414
1

http://bluecove.org/

Here's the download page: http://code.google.com/p/bluecove/downloads/list

Boris Pavlović
  • 63,078
  • 28
  • 122
  • 148