Android 10.0 sharedpereference保存数据断开电源数据丢失题目办理 ...

打印 上一主题 下一主题

主题 969|帖子 969|积分 2907

1.媒介

在10.0的系统rom定制化开发中,在用sharedpereference保存数据的时间,偶然候会出现在断电的情况下数据会丢失的功能, 接下来分析下数据保存流程,然后办理题目
2.sharedpereference保存数据断开电源数据丢失题目办理的焦点类

  1. frameworks/base/core/java/android/content/SharedPreferences.java
  2. frameworks/base/core/java/android/app/SharedPreferencesImpl.java
复制代码
3.sharedpereference保存数据断开电源数据丢失题目办理的焦点功能分析和实现

SharedPreferences是Android平台上一个轻量级的存储类,当程序中有一些少量数据需要持久化存储时,可以使用SharedPreferences举行存储。 一、SharedPreferences的数据操作 1、将数据存入SharedPreferences中 使用SharedPreferences存储数据时,起首需要调用getSharedPreferences()方法获取SharedPreferences的实例对象。由于该对象本身只能获取数据,不能对数据举行存储和修改,以是需要调用SharedPreferences的edit()方法获取到可编辑的Editor对象,最后通过Editor对象的putXxx()方法存储数据 SharedPreferences)是Android上的一个轻量级存储工具,存储布局是雷同map的key—value键值对情势。它主要用于保存app的基础设置
3.1 SharedPreferences.java的相干功能分析和实现

1、SharedPreferences 基本介绍 SharedPreferences 是 Android 的一个轻量级存储工具,它采用 key - value 的键值对方式举行存储 它允许保存和读取应用中的基本数据类型,例如,String、int、float、boolean 等 保存共享参数键值对信息的文件路径为:/data/data/【应用包名】/shared_prefs/【SharedPreferences 文件名】.xml
  1. public interface SharedPreferences {
  2.     /**
  3.      * Interface definition for a callback to be invoked when a shared
  4.      * preference is changed.
  5.      */
  6.     public interface OnSharedPreferenceChangeListener {
  7.         /**
  8.          * Called when a shared preference is changed, added, or removed. This
  9.          * may be called even if a preference is set to its existing value.
  10.          *
  11.          * <p>This callback will be run on your main thread.
  12.          *
  13.          */
  14.         void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key);
  15.     }
  16.     /*public interface OnSharedPreferenceChangeListener {
  17.         /**
  18.          * Called when a shared preference is changed, added, or removed. This
  19.          * may be called even if a preference is set to its existing value.
  20.          *
  21.          * <p>This callback will be run on your main thread.
  22.          *
  23.          * <p><em>Note: This callback will not be triggered when preferences are cleared via
  24.          * {@link Editor#clear()}.</em>
  25.          *
  26.          * @param sharedPreferences The {@link SharedPreferences} that received
  27.          *            the change.
  28.          * @param key The key of the preference that was changed, added, or
  29.          *            removed.
  30.          */
  31.         void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key);
  32.     }*/
  33.     /**
  34.      * Interface used for modifying values in a {@link SharedPreferences}
  35.      * object.  All changes you make in an editor are batched, and not copied
  36.      * back to the original {@link SharedPreferences} until you call {@link #commit}
  37.      * or {@link #apply}
  38.      */
  39.     public interface Editor {
  40.         /**
  41.          * Set a String value in the preferences editor, to be written back once
  42.          * {@link #commit} or {@link #apply} are called.
  43.          *
  44.          * @param key The name of the preference to modify.
  45.          * @param value The new value for the preference.  Passing {@code null}
  46.          *    for this argument is equivalent to calling {@link #remove(String)} with
  47.          *    this key.
  48.          *
  49.          * @return Returns a reference to the same Editor object, so you can
  50.          * chain put calls together.
  51.          */
  52.         Editor putString(String key, @Nullable String value);
  53.         /**
  54.          * Set a set of String values in the preferences editor, to be written
  55.          * back once {@link #commit} or {@link #apply} is called.
  56.          *
  57.          * @param key The name of the preference to modify.
  58.          * @param values The set of new values for the preference.  Passing {@code null}
  59.          *    for this argument is equivalent to calling {@link #remove(String)} with
  60.          *    this key.
  61.            * @return Returns a reference to the same Editor object, so you can
  62.            * chain put calls together.
  63.            */
  64.           Editor putStringSet(String key, @Nullable Set<String> values);
  65.   
  66.           Editor putInt(String key, int value);
  67.   
  68.           Editor putLong(String key, long value);
  69.           Editor putFloat(String key, float value);
  70.           Editor putBoolean(String key, boolean value);
  71.           Editor remove(String key);
  72.           Editor clear();
  73.           boolean commit();
  74.   
  75.           void apply();
  76.       }
  77. .....
  78. }
复制代码
在实现sharedpereference保存数据断开电源数据丢失题目办理的焦点功能中,可以看到 SharedPreferences是个接口,实现了相干保存数据的方法,具体保存数据是在Editor 的commit()和apply()方法中,
  1. //add core start
  2.     //do sync
  3.     public static void fileSync() {
  4.         new Thread(new Runnable() {
  5.             @Override
  6.             public void run() {
  7.                 try {
  8.                     Thread.sleep(1000);
  9.                 } catch (InterruptedException e) {
  10.                     e.printStackTrace();
  11.                 }
  12.                
  13.                 //sync
  14.                 Runtime runtime = Runtime.getRuntime();
  15.                 try {
  16.                     runtime.exec("sync");
  17.                 } catch (IOException e) {
  18.                     e.printStackTrace();
  19.                 }
  20.             }
  21.         }).start();
  22.       
  23.     }
  24. //add core end
  25.         @Override
  26.           public Editor clear() {
  27.               synchronized (mEditorLock) {
  28.                   mClear = true;
  29.                   return this;
  30.               }
  31.           }
  32.   
  33.           @Override
  34.           public void apply() {
  35.               final long startTime = System.currentTimeMillis();
  36.   
  37.               final MemoryCommitResult mcr = commitToMemory();
  38.               final Runnable awaitCommit = new Runnable() {
  39.                       @Override
  40.                       public void run() {
  41.                           try {
  42.                               mcr.writtenToDiskLatch.await();
  43.                           } catch (InterruptedException ignored) {
  44.                           }
  45.   
  46.                           if (DEBUG && mcr.wasWritten) {
  47.                               Log.d(TAG, mFile.getName() + ":" + mcr.memoryStateGeneration
  48.                                       + " applied after " + (System.currentTimeMillis() - startTime)
  49.                                       + " ms");
  50.                           }
  51.                       }
  52.                   };
  53.   
  54.               QueuedWork.addFinisher(awaitCommit);
  55.   
  56.               Runnable postWriteRunnable = new Runnable() {
  57.                       @Override
  58.                       public void run() {
  59.                           awaitCommit.run();
  60.                           QueuedWork.removeFinisher(awaitCommit);
  61.                       }
  62.                   };
  63.   
  64.               SharedPreferencesImpl.this.enqueueDiskWrite(mcr, postWriteRunnable);
  65.   
  66.               // Okay to notify the listeners before it's hit disk
  67.               // because the listeners should always get the same
  68.               // SharedPreferences instance back, which has the
  69.               // changes reflected in memory.
  70.               notifyListeners(mcr);
  71. + fileSync();
  72.           }
  73.          @Override
  74.           public boolean commit() {
  75.               long startTime = 0;
  76.   
  77.               if (DEBUG) {
  78.                   startTime = System.currentTimeMillis();
  79.               }
  80.   
  81.               MemoryCommitResult mcr = commitToMemory();
  82.   
  83.               SharedPreferencesImpl.this.enqueueDiskWrite(
  84.                   mcr, null /* sync write on this thread okay */);
  85.               try {
  86.                   mcr.writtenToDiskLatch.await();
  87.               } catch (InterruptedException e) {
  88.                   return false;
  89.               } finally {
  90.                   if (DEBUG) {
  91.                       Log.d(TAG, mFile.getName() + ":" + mcr.memoryStateGeneration
  92.                               + " committed after " + (System.currentTimeMillis() - startTime)
  93.                               + " ms");
  94.                   }
  95.               }
  96.               notifyListeners(mcr);
  97. + fileSync();
  98.               return mcr.writeToDiskResult;
  99.           }
复制代码
在实现sharedpereference保存数据断开电源数据丢失题目办理的焦点功能中,在SharedPreferencesImpl.java中 具体实现保存数据的功能,以是在EditorImpl的commit()和apply()方法中,添加sync的相干方法来同步数据到 磁盘中来实现数据的保存

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

飞不高

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表