跨进程共享 SharedPreferences

Posted smile3670

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了跨进程共享 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存储的数据是不能共享的?

以上是关于跨进程共享 SharedPreferences的主要内容,如果未能解决你的问题,请参考以下文章

跨进程共享状态变量

android 史上最简单易懂的跨进程通讯(Messenger)!

android进程间共享简单数据

是共享库/dll中的全局变量,跨进程共享

Windows 中跨进程的共享内存是不是一致?

python 演示跨进程共享文件描述符