aspose file tools
The moose likes Java Micro Edition and the fly likes Location Api Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Mobile » Java Micro Edition
Reply Bookmark "Location Api" Watch "Location Api" New topic
Author

Location Api

Anil Kukreti
Greenhorn

Joined: Oct 13, 2007
Posts: 11

Hi friends I am new to J2me programs development.
I 've written a program to access the location coordinates of a cell phone. Whenever i am running it on emulator, it's running fine but as soon as i am checking it on Nokia N82 it is raising "Location Exception". The code is as
public FindLocation(LocationMidlet locationMidlet){
this.locationMidlet = locationMidlet;
cr.setHorizontalAccuracy(500);
cr.setVerticalAccuracy(500);
try{
lp = LocationProvider.getInstance(null);
l = lp.getLocation(10);
}catch(LocationException e){
this.locationMidlet.list.append("Location Exception",null);
}
}catch(Exception e){
this.locationMidlet.list.append(""+e,null);
}

if(c!=null){
this.locationMidlet.list.append(" "+c.getLatitude(),null);
}
}
thanks
Tim Holloway
Saloon Keeper

Joined: Jun 25, 2001
Posts: 14491
    
    7

It would probably help if you printed the message text for the exception.


Customer surveys are for companies who didn't pay proper attention to begin with.
Austin Lee
Ranch Hand

Joined: Feb 18, 2008
Posts: 56
Try use the sdk of Nokia.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Location Api
 
Similar Threads
Class not found error
Redirect internal server error to custom JSP
Problem getting context in WLS 8.1
ServerSocket problem w/ Jeode EVM on iPaq
javax.microedition.location can not be resolved