我在oder中使用以下代码来获取设备的首选apn:
DefaultHttpClient http = new DefaultHttpClient();
Cursor mCursor = ctx.getContentResolver().query(Uri.parse("content://telephony/carriers/preferapn"), new String[] { "name", "proxy", "port"},null, null, null);
如果设置了代理,我会修改我的 webrequest
if (mCursor != null) {
try {
if (mCursor.moveToFirst()) {
// String name = mCursor.getString(0);
String proxy = mCursor.getString(1);
String port = mCursor.getString(2);
if (proxy != null) {
if (!proxy.equals("")) {
HttpHost proxys = new HttpHost(proxy, Integer.parseInt(port));
http.getParams().setParameter(ConnRoutePNames.DEFAULT_PROXY, proxys);
}
}
}
} finally {
try {
mCursor.close();
} catch (Exception e) {
mCursor = null;
}
mCursor = null;
}
}
自 Android 4.2 以来,代码由于安全异常而失败,非进程的用户都没有权限 WRITE_APN_SETTINGS。我添加了,但没有任何效果。有人知道如何解决吗?