get cellid in j2me
Posted
by tavallaie
on Stack Overflow
See other posts from Stack Overflow
or by tavallaie
Published on 2010-04-23T22:16:00Z
Indexed on
2010/04/23
22:23 UTC
Read the original article
Hit count: 497
I am using this code to get cell id from my sony erricson p990 cellphone but it set cellID value to "no property".
Blockquote
String cellID = System.getProperty("com.sonyericsson.net.cellid");
if(cellID == null)
cellID = System.getProperty("CellID");
if(cellID == null)
cellID = "no property";
Blockquote
How can I solve this problem? Is signing the program solve the problem?
© Stack Overflow or respective owner