Get Cell-ID in J2ME Application

904 Views Asked by At

I want a common(generic) code which gives cell ID of the mobile network.

For nokia it is:

System.getProperty("com.nokia.mid.cellid");

but I need code which gives cell ID irrespective of mobile vendors. I used System.getProperty("Cell-ID"); but this is Giving null to me.

1

There are 1 best solutions below

3
On BEST ANSWER

There is no standard way to get these values and different vendors have different System properties. You can see this at http://www.easywms.com/easywms/?q=en/node/3589

Similar question at How can one acquire position in Non-Gps devices using j2me coding