跨进程共享 SharedPreferences

String content = null;
		Context c = null;
		try {
			c = this.createPackageContext(PREFERENCE_PACKAGE,
					Context.CONTEXT_IGNORE_SECURITY);
		} catch (NameNotFoundException e) {
			// TODO Auto-generated catch block
			e.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存储的数据是不能共享的?

你可能感兴趣的:(android,android,对讲开发中问题)