Questions tagged [jsr179]

JSR 179 - Java ME API that produces information about the device's present physical location to Java applications.

JSR 179 specifies an optional package that enables developers to write mobile location-based applications for resource-limited devices. The API works on the J2ME CLDC v1.1 and CDC configurations.

24 questions
1
vote
1 answer

Nokia N97 realted to orientation

Myself shweta dodiya.I am facing problem with nokia N97 related to change orientation for my game application. I am using J2me technology.I want to pause my application when i open my slider. Thanks in advance
ios developer
  • 3,363
  • 3
  • 51
  • 111
1
vote
2 answers

Location API not working for custom/third-party applications

I'm trying to write a simple GPS based application for my BB 8800 (with Airtel, India). But for some reason my code getLocation(timeout) always returns with a non-valid location (only after timing out). I tried different combinations of criteria…
technomancer
  • 41
  • 1
  • 2
1
vote
0 answers

How to resolve LocationException of ProximityListener in j2me

My code for addProximityListener is - Coordinates proxcoord = new Coordinates(0.0, 0.0, 0.0f); proxcoord.setLatitude(Double.parseDouble(lat)); proxcoord.setLongitude(Double.parseDouble(lon)); provider.addProximityListener(this, proxcoord, 40.0f);…
Rahul More
  • 615
  • 3
  • 13
  • 41
1
vote
1 answer

In J2ME, How to pause and resume the thread

In my j2me app I have an array of double data type containing 5 coordinates value. This array is inside the thread to continuously check whether the same values is given by GPS. Once it get correct match, I want to pause the thread then remove match…
Rahul More
  • 615
  • 3
  • 13
  • 41
1
vote
2 answers

SecurityException is raised when trying to use JSR-179

I want to get longitude and latitude of the phone mobile by this code: public void commandAction(Command com, Displayable d) { if (com == position) { try { Criteria cr = new Criteria(); …
pheromix
  • 18,213
  • 29
  • 88
  • 158
0
votes
1 answer

How to find device location in blackberry

I have to find current user location in map view.How can i do that in black berry.Is it possible to find current location using GPS and show it on BlackBerry in India.Please provide some help.How can i achieve. Thank You
koti
  • 3,681
  • 5
  • 34
  • 58
0
votes
1 answer

how to get gps and network location together with j2me location API

I'm trying to implement a location tracker sort of application. I need to get location at specific times, but while I trying I notice that, if my phone doesn't get gps location it doesn't look for network location. When I turn of gps at my phone's…
Utkan Ozyurek
  • 638
  • 7
  • 20
-1
votes
3 answers

How to start GPS program in blackberry?

I want to how to create a GPS program in BlackBerry ?
Kumar
  • 5,469
  • 20
  • 64
  • 87
-1
votes
1 answer

What are the other ways of getting longitude and latitude of mobile phone other than using JSR-179?

JSR-179 is an optional package so it requires permissions and certificate signing. So are there other ways of getting longitude and latitude of mobile device through J2ME ?
pheromix
  • 18,213
  • 29
  • 88
  • 158
1
2