android---APN切换

时间:2022-08-25 04:52:14

android手机客户端在上传文件时,有时候会一直失败,其可能的原因是APN的设置。wap下的成功率极低,所以在进行文件上传时最好设置下 apn为net形式。下面是我在网上找的一些代码,是由wap转net的,当然net转wap稍微修改下就可以。经测试是可用的,分享一下:

PS:apn的切换过程需要时间,不是立即生效。

  1. package com.android.couples;
  2. import java.util.ArrayList;
  3. import android.content.ContentResolver;
  4. import android.content.ContentValues;
  5. import android.content.Context;
  6. import android.database.Cursor;
  7. import android.net.Uri;
  8. import android.text.TextUtils;
  9. import android.util.Log;
  10. public class APNManager {
  11. private static String TAG = "APNManager";
  12. private static final Uri APN_TABLE_URI = Uri
  13. .parse("content://telephony/carriers");// 所有的APN配配置信息位置
  14. private static final Uri PREFERRED_APN_URI = Uri
  15. .parse("content://telephony/carriers/preferapn");// 当前的APN
  16. private static String[] projection = { "_id", "apn", "type", "current",
  17. "proxy", "port" };
  18. private static String APN_NET_ID = null;
  19. //切换成NETAPN
  20. public static boolean ChangeNetApn(final Context context) {
  21. final String wapId = getWapApnId(context);
  22. String apnId = getCurApnId(context);
  23. // 若当前apn是wap,则切换至net
  24. if (wapId.equals(apnId)) {
  25. APN_NET_ID = getNetApnId(context);
  26. setApn(context, APN_NET_ID);
  27. // 切换apn需要一定时间,先让等待几秒,与机子性能有关
  28. try {
  29. Thread.sleep(3000);
  30. } catch (InterruptedException e) {
  31. e.printStackTrace();
  32. }
  33. Log.d("xml", "setApn");
  34. return true;
  35. }
  36. return true;
  37. }
  38. //获取当前APN
  39. public static String getCurApnId(Context context) {
  40. ContentResolver resoler = context.getContentResolver();
  41. // String[] projection = new String[] { "_id" };
  42. Cursor cur = resoler.query(PREFERRED_APN_URI, projection, null, null,
  43. null);
  44. String apnId = null;
  45. if (cur != null && cur.moveToFirst()) {
  46. apnId = cur.getString(cur.getColumnIndex("_id"));
  47. }
  48. Log.i("xml","getCurApnId:"+apnId);
  49. return apnId;
  50. }
  51. public static APN getCurApnInfo(final Context context) {
  52. ContentResolver resoler = context.getContentResolver();
  53. // String[] projection = new String[] { "_id" };
  54. Cursor cur = resoler.query(PREFERRED_APN_URI, projection, null, null,
  55. null);
  56. APN apn = new APN();
  57. if (cur != null && cur.moveToFirst()) {
  58. apn.id = cur.getString(cur.getColumnIndex("_id"));
  59. apn.apn = cur.getString(cur.getColumnIndex("apn"));
  60. apn.type = cur.getString(cur.getColumnIndex("type"));
  61. }
  62. return apn;
  63. }
  64. public static void setApn(Context context, String id) {
  65. ContentResolver resolver = context.getContentResolver();
  66. ContentValues values = new ContentValues();
  67. values.put("apn_id", id);
  68. resolver.update(PREFERRED_APN_URI, values, null, null);
  69. Log.d("xml", "setApn");
  70. }
  71. //获取WAP APN
  72. public static String getWapApnId(Context context) {
  73. ContentResolver contentResolver = context.getContentResolver();
  74. // 查询cmwapAPN
  75. Cursor cur = contentResolver.query(APN_TABLE_URI, projection,
  76. "apn = \'cmwap\' and current = 1", null, null);
  77. // wap APN 端口不为空
  78. if (cur != null && cur.moveToFirst()) {
  79. do {
  80. String id = cur.getString(cur.getColumnIndex("_id"));
  81. String proxy = cur.getString(cur.getColumnIndex("proxy"));
  82. if (!TextUtils.isEmpty(proxy)) {
  83. Log.i("xml","getWapApnId"+id);
  84. return id;
  85. }
  86. } while (cur.moveToNext());
  87. }
  88. return null;
  89. }
  90. public static String getNetApnId(Context context) {
  91. ContentResolver contentResolver = context.getContentResolver();
  92. Cursor cur = contentResolver.query(APN_TABLE_URI, projection,
  93. "apn = \'cmnet\' and current = 1", null, null);
  94. if (cur != null && cur.moveToFirst()) {
  95. return cur.getString(cur.getColumnIndex("_id"));
  96. }
  97. return null;
  98. }
  99. //获取所有APN
  100. public static ArrayList<APN> getAPNList(final Context context) {
  101. ContentResolver contentResolver = context.getContentResolver();
  102. Cursor cr = contentResolver.query(APN_TABLE_URI, projection, null,
  103. null, null);
  104. ArrayList<APN> apnList = new ArrayList<APN>();
  105. if (cr != null && cr.moveToFirst()) {
  106. do{
  107. Log.d(TAG,
  108. cr.getString(cr.getColumnIndex("_id")) + ";"
  109. + cr.getString(cr.getColumnIndex("apn")) + ";"
  110. + cr.getString(cr.getColumnIndex("type")) + ";"
  111. + cr.getString(cr.getColumnIndex("current"))+ ";"
  112. + cr.getString(cr.getColumnIndex("proxy")));
  113. APN apn = new APN();
  114. apn.id = cr.getString(cr.getColumnIndex("_id"));
  115. apn.apn = cr.getString(cr.getColumnIndex("apn"));
  116. apn.type = cr.getString(cr.getColumnIndex("type"));
  117. apnList.add(apn);
  118. }while(cr.moveToNext());
  119. cr.close();
  120. }
  121. return apnList;
  122. }
  123. //获取可用的APN
  124. public static ArrayList<APN> getAvailableAPNList(final Context context) {
  125. // current不为空表示可以使用的APN
  126. ContentResolver contentResolver = context.getContentResolver();
  127. Cursor cr = contentResolver.query(APN_TABLE_URI, projection,
  128. "current is not null" , null, null);
  129. ArrayList<APN> apnList = new ArrayList<APN>();
  130. if (cr != null && cr.moveToFirst()) {
  131. do{
  132. Log.d(TAG,
  133. cr.getString(cr.getColumnIndex("_id")) + ";"
  134. + cr.getString(cr.getColumnIndex("apn")) + ";"
  135. + cr.getString(cr.getColumnIndex("type")) + ";"
  136. + cr.getString(cr.getColumnIndex("current"))+ ";"
  137. + cr.getString(cr.getColumnIndex("proxy")));
  138. APN apn = new APN();
  139. apn.id = cr.getString(cr.getColumnIndex("_id"));
  140. apn.apn = cr.getString(cr.getColumnIndex("apn"));
  141. apn.type = cr.getString(cr.getColumnIndex("type"));
  142. apnList.add(apn);
  143. }while (cr.moveToNext());
  144. cr.close();
  145. }
  146. return apnList;
  147. }
  148. //自定义APN包装类
  149. static class APN {
  150. String id;
  151. String apn;
  152. String type;
  153. public String toString() {
  154. return "id=" + id + ",apn=" + apn + ";type=" + type;
  155. }
  156. }
  157. }