gpt4 book ai didi

lte - 如何在Android Studio(TelephonyManager)上获取LTE的eNB id

转载 作者:行者123 更新时间:2023-12-02 20:48:49 26 4
gpt4 key购买 nike

美好的一天,

请问如何获取CellIdentityLte的eNB id?

有什么办法可以得到吗?

谢谢!

最佳答案

我明白了!

                    final CellIdentityLte identityLte = ((CellInfoLte) info).getCellIdentity();
int longCid = identityLte.getCi();

String cellidHex = DecToHex(longCid);
String eNBHex = cellidHex.substring(0, cellidHex.length()-2);

int eNB = HexToDec(eNBHex);

return checkValidString(Integer.toString(eNB));

通过使用此方法...

// Decimal -> hexadecimal
public String DecToHex(int dec){
return String.format("%x", dec);
}

// hex -> decimal
public int HexToDec(String hex){
return Integer.parseInt(hex, 16);
}

关于lte - 如何在Android Studio(TelephonyManager)上获取LTE的eNB id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43152872/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com