String content = null;Context c = null;try {c = this.createPackageContext(PREFERENCE_PACKAGE,Context.CONTEXT_IGNORE_SECURITY);} catch (NameNotFoundException e) {// TODO Auto-generated catch blocke.printStackTrace();}Log.d(TAG, "" + c);SharedPreferences sh = c.getSharedPreferences(PREFERENCE_NAME, Context.MODE_WORLD_READABLE | Context.MODE_MULTI_PROCESS);content = sh.getString("tr069token3", null);

在android 4.0上通过以上方法可以跨进程访问,之前没有加入Context.MODE_MULTI_PROCESS参数,导致不能获取到修改后的数据。在2.3的室内机上不能获取,没有权限。


下面是MODE_MULTI_PROCESS的说明:

SharedPreference loading flag: when set, the file on disk will be checked for modification even if the shared preferences instance is already loaded in this process. This behavior is sometimes desired in cases where the application has multiple processes, all writing to the same SharedPreferences file. Generally there are better forms of communication between processes, though.
This was the legacy (but undocumented) behavior in and before Gingerbread (Android 2.3) and this flag is implied when targetting such releases. For applications targetting SDK versions greater than Android 2.3, this flag must be explicitly set if desired.

也就是说,MODE_MULTI_PROCESS这个值是一个标志,在Android 2.3及以前,这个标志位都是默认开启的,允许多个进程访问同一个SharedPrecferences对象。而以后的Android版本,必须通过明确的将MODE_MULTI_PROCESS这个值传递给mode参数,才能开启多进程访问。



http://blog.chinaunix.net/uid-20771867-id-3085191.html

http://blog.csdn.net/elfylin/article/details/5988513 各个模式下生成的xml权限不一样?

http://www.eoeandroid.com/thread-181297-1-1.html Context.MODE_PRIVATE存储的数据是不能共享的?

更多相关文章

  1. Android(安卓)实现监听开机启动开启后台服务,并实现自动重启。
  2. 一个android访问http资源的便捷工具类——HttpHelper
  3. Android带参数链接请求服务器
  4. android 源码的一些修改定制方案
  5. android软件设置gps自动开启
  6. Android各种访问权限Permission详解
  7. eclipse开发android常见错误总结
  8. android新闻端demo
  9. Android(安卓)10、11 存储完全适配(上)

随机推荐

  1. Android实现Service后台下载Notification
  2. Android(安卓)图片与屏幕坐标点
  3. Activity的属性之―launchMode
  4. 【精华】Android面试精华总结——Socket
  5. Android学习笔记―第二章 Android四大组
  6. android仿微信好友列表
  7. Android-开源项目整理集.
  8. eclipse查看android源码包(eclipse导入and
  9. 测试为Android模拟器创建和管理sdcard im
  10. [转]关于读取手机号码