Android App data write as file data with synchronous Demo

  1 package com.android.utils;
  2
  3 import java.io.File;
  4 import java.io.IOException;
  5 import java.io.RandomAccessFile;
  6 import java.util.Arrays;
  7
  8 import android.app.Activity;
  9 import android.util.Log;
 10
 11
 12 /**
 13  * 在一些对数据实时性要求比较高的场合,如随时可能断电的场合下,同时需要将数据写入文件中,
 14  * 这个时候,我们不希望数据在内存中呆太久,最好能够做到同步,这是我们的需求。<br>
 15  * 第一种方案:<br>
 16  *     1. RandomAccessFile<br>
 17  *     2. public RandomAccessFile(File file, String mode) throws FileNotFoundException<br>
 18  *      Constructs a new RandomAccessFile based on file and opens it according to the access string in mode. <br>
 19  *     3. mode may have one of following values: <br>
 20  *      1. "r" The file is opened in read-only mode. An IOException is thrown if any of the write methods is called. <br>
 21  *         2. "rw" The file is opened for reading and writing. If the file does not exist, it will be created. <br>
 22  *         3. "rws" The file is opened for reading and writing. Every change of the file's content or metadata must be written synchronously to the target device. <br>
 23  *         4. "rwd" The file is opened for reading and writing. Every change of the file's content must be written synchronously to the target device. <br>
 24  *     4. 由于我们需要其中的数据同步功能,所以我们选择使用包装RandomAccessFile类,实现要求。<br>
 25  * 第二种方案:<br>
 26  *  1. FileDescriptor中有sync()方法<br>
 27         Ensures that data which is buffered within the underlying implementation is written out to the appropriate device before returning.<br>
 28  *  2. FileOutputStream中的 getFD()方法<br>
 29         Returns a FileDescriptor which represents the lowest level representation of an operating system stream resource. <br>
 30  *    3. 使用起来感觉没有RandomAccessFile方便,放弃时使用<br>
 31  */
 32
 33 public class ZengjfRandomAccessFile {
 34     /**
 35      * 将整形数组写入文件
 36      *
 37      * @param filePath         文件路径
 38      * @param data             整形数组
 39      * @throws IOException
 40      */
 41     static public void writeIntArray(String filePath, int[] data) throws IOException {
 42         if (null == filePath || null == data)
 43             return ;
 44
 45         if (filePath.trim().equals(""))
 46             return ;
 47
 48         File file = new File(filePath);
 49         if (!file.exists())
 50             file.createNewFile();
 51
 52         if (!file.canWrite())
 53             throw new RuntimeException("Zengjf Utils writeIntArray(): no permission for file -- " + filePath + ".");
 54
 55         // write data
 56         RandomAccessFile raf = new RandomAccessFile(file, "rws");
 57         for (int i = 0; i < data.length; i++)
 58             raf.writeInt(data[i]);
 59
 60         raf.close();
 61     }
 62
 63     /**
 64      * 将整形数组写入文件,文件目录被指定,作为使用者可以不用关心
 65      *
 66      * @param activity         调用这个函数的Activity
 67      * @param data             要保存的的整形数组
 68      * @throws IOException
 69      */
 70     static public void writeIntArray(Activity activity, int[] data) throws IOException {
 71         if (null == activity || null == data)
 72             return ;
 73
 74         String filePath = activity.getApplicationContext().getFilesDir().getAbsoluteFile() + "/zengjfData.txt";
 75         writeIntArray(filePath, data);
 76     }
 77
 78     /**
 79      * 从文件中读出长度为length的整形数组
 80      *
 81      * @param filePath        文件路径
 82      * @param length          数组长度
 83      * @return                返回数组,如果出错,返回null
 84      * @throws IOException
 85      */
 86     static public int[] readIntArray(String filePath, int length) throws IOException {
 87
 88         if (null == filePath || length <= 0)
 89             return null;
 90
 91         if (filePath.trim().equals(""))
 92             return null;
 93
 94         File file = new File(filePath);
 95         if (!file.canRead())
 96             throw new RuntimeException("Zengjf Utils writeIntArray(): no permission for file -- " + filePath + ".");
 97
 98         int[] data = new int[length];     // for return data
 99
100         // if file not exist in first time and file length less than data size,
101         // just create file and make data for it
102         if (!file.exists() || (file.length() < (4 * length))) {
103             for (int i = 0; i < data.length; i++)
104                 data[i] = 0;
105
106             writeIntArray(filePath, data);
107             return data;
108         }
109
110         //get data
111         RandomAccessFile raf = new RandomAccessFile(file, "r");
112         for (int i = 0; i < length; i++)
113             data[i] = raf.readInt();
114
115         raf.close();
116
117         return data;
118     }
119
120     /**
121      * 从文件中读取整形数组,文件位置、名已经被指定,作为使用者可以不关心
122      *
123      * @param activity        调用这个函数的Activity
124      * @param length          数组的长度
125      * @return                返回数组,如果出错,返回null
126      * @throws IOException
127      */
128     static public int[] readIntArray(Activity activity, int length) throws IOException {
129         if (null == activity || 0 == length)
130             return null;
131
132         String filePath = activity.getApplicationContext().getFilesDir().getAbsoluteFile() + "/zengjfData.txt";
133         return readIntArray(filePath, length);
134     }
135
136     /**
137      * 往文件中写入原始整形数组,其实就是填充整形0
138      *
139      * @param filePath        文件路径
140      * @param length          数组大小
141      * @throws IOException
142      */
143     static public void writeRawIntArray(String filePath, int length) throws IOException {
144
145         if (null == filePath || length <= 0)
146             return ;
147
148         if (filePath.trim().equals(""))
149             return ;
150
151         File file = new File(filePath);
152         int[] data = new int[length];     // for return data
153
154         // if file not exist in first time, just create file and make data for it
155         if (file.exists()) {
156             for (int i = 0; i < data.length; i++)
157                 data[i] = 0;
158
159             writeIntArray(filePath, data);
160         }
161     }
162
163     /**
164      *
165      * 往文件中写入值为0的整形数组,文件位置、名已经被指定,作为使用者可以不关心
166      *
167      * @param activity        调用这个函数的Activity
168      * @param length          写入数组的长度
169      * @throws IOException
170      */
171     static public void writeRawIntArray(Activity activity, int length) throws IOException{
172         if (null == activity || 0 == length)
173             return ;
174
175         String filePath = activity.getApplicationContext().getFilesDir().getAbsoluteFile() + "/zengjfData.txt";
176         writeRawIntArray(filePath, length);
177     }
178
179     /**
180      * 测试用的的Demo
181      * @param activity     调用这个函数的Activity
182      */
183     static public void testDemo(Activity activity) {
184         int[] data = {1, 2, 3, 4, 5, 6};
185         try {
186             writeIntArray(activity, data);
187             int[] redata = readIntArray(activity, 6);
188             Log.e("zengjf utils", Arrays.toString(redata));
189         } catch (IOException e) {
190             // TODO Auto-generated catch block
191             e.printStackTrace();
192         }
193     }
194 }

 

时间: 2024-09-19 18:05:22

Android App data write as file data with synchronous Demo的相关文章

【COCOS2DX-LUA 脚本开发之十三】解决COCOS2DX-LUA编译到ANDROID找不到CCLUAENGINE、HELLOWORLD或出现GET DATA FROM FILE(XXX.LUA) FAILED/CAN NOT GET FILE DATA OF XXX.LUA、COCOS2DX

本站文章均为 李华明Himi 原创,转载务必在明显处注明:  转载自[黑米GameDev街区] 原文链接: http://www.himigame.com/lua-game/1368.html 对于跨平台整合,Himi已经写了1.x 与 2.x 的了,还不知道如何整合的请移步到 [Cocos2d-X(2.x) 游戏开发系列之二]cocos2dx最新2.x版本跨平台整合NDK+Xcode,Xcode编写&编译代码,Android导入打包运行即可!) 本篇只是解决在整合cocos2dx-lua项目会

Starting MySQL. ERROR! The server quit without updating PID file (/data/mysql/mysql.pid).

  mysql重启导致出现以下错误:      Starting MySQL. ERROR! The server quit without updating PID file (/data/mysql/mysql.pid).             删除ibdata1.ib_logfile* 相关文件   删除之前先备份     使用命令重启:           /usr/local/mysql/support-files/mysql.server start --user=mysql --

couldn&amp;#39;t open file: data/coco.names

在ubuntu下配置yolo(v2)的时候,编译了源码后,尝试运行demo: ./darknet detect cfg/yolo.cfg yolo.weights data/dog.jpg 结果报错提示: couldn't open file: data/coco.names google上找不到同样的问题.那就是我的使用方式有问题了. 因为ubuntu上临时无法上网,从windows上用git clone下载的darknet的源码.然后vim查看了下源码文件,果然,都是dos格式的. 果断弃坑

Android App中实现图片异步加载的实例分享_Android

一.概述一般大量图片的加载,比如GridView实现手机的相册功能,一般会用到LruCache,线程池,任务队列等:那么异步消息处理可以用哪呢? 1.用于UI线程当Bitmap加载完成后更新ImageView 2.在图片加载类初始化时,我们会在一个子线程中维护一个Loop实例,当然子线程中也就有了MessageQueue,Looper会一直在那loop停着等待消息的到达,当有消息到达时,从任务队列按照队列调度的方式(FIFO,LIFO等),取出一个任务放入线程池中进行处理. 简易的一个流程:当需

详解Android App卸载后跳转到指定的反馈页面的方法_Android

很多人也许会问:360被卸载之后会跳转到指定的反馈页面,是怎么弄的? 其实这个问题的核心就在于:应用被卸载了,如果能够做到后续的代码逻辑继续执行 我们再来仔细分析一下场景和流程 一个应用被用户卸载肯定是有理由的,而开发者却未必能得知这一重要的理由,毕竟用户很少会主动反馈建议,多半就是用得不爽就卸,如果能在被卸载后获取到用户的一些反馈,那对开发者进一步改进应用是非常有利的.目前据我所知,国内的Android应用中实现这一功能的只有360手机卫士.360平板卫士,那么如何实现这一功能的? 我们可以把

仿墨迹天气在Android App中实现自定义zip皮肤更换_Android

在这里谈一下墨迹天气的换肤实现方式,不过首先声明我只是通过反编译以及参考了一些网上其他资料的方式推测出的换肤原理, 在这里只供参考. 若大家有更好的方式, 欢迎交流. 墨迹天气下载的皮肤就是一个zip格式的压缩包,在应用的时候把皮肤资源释放到墨迹天气应用的目录下,更换皮肤时新的皮肤资源会替换掉老的皮肤资源每次加载的时候就是从手机硬盘上读取图片,这些图片资源的命名和程序中的资源的命名保持一致,一旦找不到这些资源,可以选择到系统默认中查找.这种实现是直接读取了外部资源文件,在程序运行时通过代码显示的

Android App中各种数据保存方式的使用实例总结_Android

少量数据保存之SharedPreferences接口实例SharedPreferences数据保存主要是通过键值的方式存储在xml文件中 xml文件在data/此程序的包名/XX.xml. 格式: <?xml version='1.0' encoding='utf-8' standalone='yes' ?> <map> <int name="count" value="3" /> <string name="ti

用于Android App安全检测Drozer工具安装使用教程

最近接到任务,让了解一下几款Android安全测试相关的软件,首先是Drozer.Drozer是一款综合的安全评估和攻击的android框架,据 产品介绍 里说,Drozer可以全面评估app的安全性,并帮助团队把app的安全风险保持在可控范围内. 使用方法 1.在 mwrinfosecurity 公司的这个网页上,提供了社区版本的下载(没错,还有收费的高级版),下载并安装之.并保证android的adb环境已经配置好,即cmd中输入adb devices不会报错.并在手机端安装下载包中的Age

解决android java.lang.ClassCastException android.app.Application

定义类 DemoApp , 结果 Activity 调用始终报类错郁闷呀!    class DemoApp extends Application{    }    下面的配置注意:        <application android:icon="@drawable/icon"              android:label="@string/app_name"              android:debuggable="true&