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.
  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 }

 

目录
相关文章
|
3月前
|
XML Java 数据库
安卓项目:app注册/登录界面设计
本文介绍了如何设计一个Android应用的注册/登录界面,包括布局文件的创建、登录和注册逻辑的实现,以及运行效果的展示。
257 0
安卓项目:app注册/登录界面设计
|
3月前
|
移动开发 开发框架 小程序
uni-app:demo&媒体文件&配置全局的变量(三)
uni-app 是一个使用 Vue.js 构建多平台应用的框架,支持微信小程序、支付宝小程序、H5 和 App 等平台。本文档介绍了 uni-app 的基本用法,包括登录示例、媒体文件处理、全局变量配置和 Vuex 状态管理的实现。通过这些示例,开发者可以快速上手并高效开发多平台应用。
111 0
|
9天前
|
存储 监控 API
app开发之安卓Android+苹果ios打包所有权限对应解释列表【长期更新】-以及默认打包自动添加权限列表和简化后的基本打包权限列表以uniapp为例-优雅草央千澈
app开发之安卓Android+苹果ios打包所有权限对应解释列表【长期更新】-以及默认打包自动添加权限列表和简化后的基本打包权限列表以uniapp为例-优雅草央千澈
|
2月前
|
移动开发 小程序 开发工具
Demo发布- ClkLog客户端集成 uni-app
在上一期推文中,我们与大家分享了 React Native 的集成 demo。本期,我们将继续介绍 ClkLog 集成 uni-app 的 demo。 uni-app 允许开发者编写一套代码,然后可以编译到 iOS、Android、H5 以及各种小程序等多个平台。因此,本次 demo 中将涵盖上述所有平台,并且我们会详细说明集成过程中遇到的难点及解决方案。
|
4月前
|
Java Maven 开发工具
第一个安卓项目 | 中国象棋demo学习
本文是作者关于其第一个安卓项目——中国象棋demo的学习记录,展示了demo的运行结果、爬坑记录以及参考资料,包括解决Android Studio和maven相关问题的方法。
第一个安卓项目 | 中国象棋demo学习
|
4月前
|
Java 数据库 Android开发
一个Android App最少有几个线程?实现多线程的方式有哪些?
本文介绍了Android多线程编程的重要性及其实现方法,涵盖了基本概念、常见线程类型(如主线程、工作线程)以及多种多线程实现方式(如`Thread`、`HandlerThread`、`Executors`、Kotlin协程等)。通过合理的多线程管理,可大幅提升应用性能和用户体验。
158 15
一个Android App最少有几个线程?实现多线程的方式有哪些?
|
4月前
|
存储 开发工具 Android开发
使用.NET MAUI开发第一个安卓APP
【9月更文挑战第24天】使用.NET MAUI开发首个安卓APP需完成以下步骤:首先,安装Visual Studio 2022并勾选“.NET Multi-platform App UI development”工作负载;接着,安装Android SDK。然后,创建新项目时选择“.NET Multi-platform App (MAUI)”模板,并仅针对Android平台进行配置。了解项目结构,包括`.csproj`配置文件、`Properties`配置文件夹、平台特定代码及共享代码等。
341 2
|
4月前
|
XML Android开发 数据格式
🌐Android国际化与本地化全攻略!让你的App走遍全球无障碍!🌍
在全球化背景下,实现Android应用的国际化与本地化至关重要。本文以一款旅游指南App为例,详细介绍如何通过资源文件拆分与命名、适配布局与方向、处理日期时间及货币格式、考虑文化习俗等步骤,完成多语言支持和本地化调整。通过邀请用户测试并收集反馈,确保应用能无缝融入不同市场,提升用户体验与满意度。
144 3
|
4月前
|
Java 数据库 Android开发
一个Android App最少有几个线程?实现多线程的方式有哪些?
本文介绍了Android应用开发中的多线程编程,涵盖基本概念、常见实现方式及最佳实践。主要内容包括主线程与工作线程的作用、多线程的多种实现方法(如 `Thread`、`HandlerThread`、`Executors` 和 Kotlin 协程),以及如何避免内存泄漏和合理使用线程池。通过有效的多线程管理,可以显著提升应用性能和用户体验。
126 10
|
3月前
|
安全 网络安全 Android开发
深度解析:利用Universal Links与Android App Links实现无缝网页至应用跳转的安全考量
【10月更文挑战第2天】在移动互联网时代,用户经常需要从网页无缝跳转到移动应用中。这种跳转不仅需要提供流畅的用户体验,还要确保安全性。本文将深入探讨如何利用Universal Links(仅限于iOS)和Android App Links技术实现这一目标,并分析其安全性。
439 0