| 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
|
|
|
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.
|
 |
 |
|
|
subject: Location Api
|
|
|