我正在处理iPhone和Android中的应用程序,我需要阅读Modem Firmware Version
,因为iPhone开发人员在他身边。
我在Internet / SO上搜索但找不到与我的问题有关的任何内容。
是否可以在Android中阅读Modem Firmware Version
?如果不是什么应该等同于什么? (我们读取此属性以及更多用于跟踪设备)
答案 0 :(得分:5)
正如nandeesh所说,在调制解调器固件的地方使用基带版本,他没有提供他的自定义方法的任何源代码。
我做了一些RnD并得到了
的最终解决方案private static final String BASEBAND_VERSION = "gsm.version.baseband";
/**
* Returns a SystemProperty
*
* @param propName The Property to retrieve
* @return The Property, or NULL if not found
*/
public static String getSystemProperty(String propName) {
String TAG = "TEst";
String line;
BufferedReader input = null;
try {
Process p = Runtime.getRuntime().exec("getprop " + propName);
input = new BufferedReader(new InputStreamReader(p.getInputStream()), 1024);
line = input.readLine();
input.close();
}
catch (IOException ex) {
Log.e(TAG, "Unable to read sysprop " + propName, ex);
return null;
}
finally {
if (input != null) {
try {
input.close();
}
catch (IOException e) {
Log.e(TAG, "Exception while closing InputStream", e);
}
}
}
return line;
}
并将其命名为
String basebandVersion = getSystemProperty(BASEBAND_VERSION);
所有积分都转到cyanogen-updater,自定义方法来自同一个项目SysUtils
答案 1 :(得分:2)
android上的手机通过获取属性gsm.version.baseband来显示基带版本。您可以使用SystemProperties.get(“gsm.version.baseband”,“unknown”);