当前位置:主页 > java教程 > Android设备如何保证数据同步写入磁盘的实现

Android设备保证数据同步写入磁盘的步骤代码

发布:2020-01-20 09:33:15 121


我们帮大家精选了Android相关的编程文章,网友王忆敏根据主题投稿了本篇教程内容,涉及到Android、数据同步、Android设备如何保证数据同步写入磁盘的实现相关内容,已被455网友关注,涉猎到的知识点内容可以在下方电子书获得。

Android设备如何保证数据同步写入磁盘的实现

在一些特定的工作场景中,我们把数据及时写出磁盘,而不是暂时保存在系统的文件缓存区,防止掉电导致数据丢失

/**
 * Force all system buffers to synchronize with the underlying
 * device. This method returns after all modified data and
 * attributes of this FileDescriptor have been written to the
 * relevant device(s). In particular, if this FileDescriptor
 * refers to a physical storage medium, such as a file in a file
 * system, sync will not return until all in-memory modified copies
 * of buffers associated with this FileDescriptor have been
 * written to the physical medium.
 *
 * sync is meant to be used by code that requires physical
 * storage (such as a file) to be in a known state For
 * example, a class that provided a simple transaction facility
 * might use sync to ensure that all changes to a file caused
 * by a given transaction were recorded on a storage medium.
 *
 * sync only affects buffers downstream of this FileDescriptor. If
 * any in-memory buffering is being done by the application (for
 * example, by a BufferedOutputStream object), those buffers must
 * be flushed into the FileDescriptor (for example, by invoking
 * OutputStream.flush) before that data will be affected by sync.
 *
 * @exception SyncFailedException
 *    Thrown when the buffers cannot be flushed,
 *    or because the system cannot guarantee that all the
 *    buffers have been synchronized with physical media.
 * @since   JDK1.1
 */
public native void sync() throws SyncFailedException;

可能一看到这个场景,很多人会想到数据库的事务,查看Android数据库sqlite的源码可以看到,数据库事务只能保证n个操作,要么都执行,要么都不执行。数据库事务在所有操作完成后,会提醒文件系统与磁盘同步,但是不会等到所有系统缓冲区与磁盘同步完成才返回!

  FileDescriptor.getFd().sync();会强制所有系统缓冲区与磁盘同步
File file = new File("/sdcard/a.txt");
    try {
      FileOutputStream outputStream = new FileOutputStream(file);
      outputStream.write("kuangxf".getBytes());
      outputStream.flush();
      //强制文件系统刷新
      outputStream.getFD().sync();
    } catch (Exception e) {
      e.printStackTrace();
    }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持码农之家。

822


参考资料

相关文章

  • Android SharePreferences与数据库SQLite存储实现方法介绍

    发布:2023-03-13

    这篇文章主要介绍了Android SharePreferences与数据库SQLite用于存储的具体实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习吧


  • 务必掌握的Android十六进制状态管理最佳实践

    发布:2023-03-13

    这篇文章主要为大家介绍了务必掌握的Android十六进制状态管理最佳实践,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪


  • Android常用定时器的实现方式

    发布:2023-03-04

    我们在开发中时常需要写一些定时的任务,比如每5秒执行一次,下面这篇文章主要给大家介绍了关于Android常用定时器的实现方式,文中通过示例代码介绍的非常详细,需要的朋友可以参考下


  • Android简单实现天气预报App

    发布:2023-03-08

    这篇文章主要为大家详细介绍了Android简单实现天气预报App,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下


  • Android 下的 QuickJS Binding 库特性使用详解

    发布:2023-03-07

    这篇文章主要介绍了Android 下的 QuickJS Binding 库特性使用详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪


  • Android开发使用RecyclerView添加点击事件实例详解

    发布:2023-03-02

    这篇文章主要为大家介绍了Android开发使用RecyclerView添加点击事件实例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪


  • Android协程作用域与序列发生器限制介绍梳理

    发布:2023-03-03

    协程的作用是什么?协程是一种轻量级的线程,解决异步编程的复杂性,异步的代码使用协程可以用顺序进行表达,文中通过示例代码介绍详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习吧


  • Android Activity View加载与绘制流程深入刨析源码

    发布:2023-03-03

    这篇文章主要介绍了Android Activity View的加载与绘制流程源码分析,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧


网友讨论