Я нашел этот код, у меня отлично работает ...
protected String getIpAddress() {
String ip = new String("");
try {
int cni = RadioInfo.getCurrentNetworkIndex();
int apnId = cni + 1; // cni is zero based
byte[] ipaddr = RadioInfo.getIPAddress(apnId);
for (int i = 0; i < ipaddr.length; i++) {
int temp = (ipaddr[i] & 0xff);
if (i < 3) {
ip = ip.concat("" + temp + ".");
} else {
ip = ip.concat("" + temp);
}
}
} catch (Exception e) {
ip = null;
}
return ip;
}
См .: Форум BlackBerry