参考了网上的一些资源代码,FileUtils.java:

  1. package com.example.test;
  2.  
  3. import java.io.BufferedInputStream;
  4. import java.io.BufferedOutputStream;
  5. import java.io.File;
  6. import java.io.FileInputStream;
  7. import java.io.FileNotFoundException;
  8. import java.io.FileOutputStream;
  9. import java.io.IOException;
  10. import java.io.InputStream;
  11. import java.io.OutputStream;
  12.  
  13. import android.os.Environment;
  14.  
  15. public class FileUtils {
  16. private String SDCardRoot;
  17. private String SDStateString;
  18.  
  19. /**
  20. * ----------------注意权限的添加----------------
  21. */
  22. public FileUtils() {
  23. // 得到当前外部存储设备的目录
  24. SDCardRoot = Environment.getExternalStorageDirectory()
  25. .getAbsolutePath() + File.separator;
  26. SDStateString = Environment.getExternalStorageState();// 获取扩展SD卡设备状态
  27. }
  28.  
  29. /**
  30. * 在SD卡上创建文件
  31. *
  32. * @param fileName
  33. * @param dir
  34. * 目录路径
  35. * @return
  36. * @throws IOException
  37. */
  38. public File createFileInSDCard(String fileName, String dir)
  39. throws IOException {
  40. File file = new File(SDCardRoot + dir + File.separator + fileName);
  41. System.out.println("file---->" + file);
  42. file.createNewFile();
  43. return file;
  44. }
  45.  
  46. /**
  47. * 在SD卡上创建目录
  48. *
  49. * @param dir
  50. * 目录路径,相当于文件夹
  51. * @return
  52. */
  53. public File creatSDDir(String dir) {
  54. File dirFile = new File(SDCardRoot + dir + File.separator);
  55. // System.out.println(dirFile.mkdirs());
  56. if (!dirFile.exists()) {
  57. dirFile.mkdirs();
  58. }
  59. return dirFile;
  60. }
  61.  
  62. /**
  63. * 判断SD卡上的文件夹是否存在
  64. *
  65. * @param fileName
  66. * 文件名称
  67. * @param path
  68. * 目录路径
  69. * @return
  70. */
  71. public boolean isFileExist(String fileName, String path) {
  72. File file = new File(SDCardRoot + path + File.separator + fileName);
  73. return file.exists();
  74. }
  75.  
  76. /**
  77. * 将一个字节数组数据写入到SD卡中
  78. *
  79. * @param dir
  80. * 目录
  81. * @param fileName
  82. * @param bytes
  83. * @return
  84. */
  85. public boolean writeSDCard(String dir, String fileName, byte[] bytes) {
  86. if (bytes == null) {
  87. return false;
  88. }
  89. OutputStream outputStream = null;
  90. if (SDStateString.equals(android.os.Environment.MEDIA_MOUNTED)) {
  91. // File file = null;
  92. creatSDDir(dir);
  93. try {
  94. File file = createFileInSDCard(fileName, dir);
  95. outputStream = new BufferedOutputStream(new FileOutputStream(
  96. file));
  97. outputStream.write(bytes);
  98. outputStream.flush();
  99. return true;
  100. } catch (IOException e) {
  101. // TODO Auto-generated catch block
  102. e.printStackTrace();
  103. } finally {
  104. if (outputStream != null) {
  105. try {
  106. outputStream.close();
  107. } catch (IOException e) {
  108. // TODO Auto-generated catch block
  109. e.printStackTrace();
  110. }
  111. }
  112. }
  113.  
  114. }
  115. return false;
  116. }
  117.  
  118. /**
  119. * 将一个InputStream里面的数据写入到SD卡中
  120. */
  121. public File write2SDFromInput(String path, String fileName,
  122. InputStream input) {
  123.  
  124. File file = null;
  125. OutputStream output = null;
  126. try {
  127. creatSDDir(path);
  128. file = createFileInSDCard(fileName, path);
  129. output = new FileOutputStream(file);
  130. byte buffer[] = new byte[4 * 1024];
  131. int temp;
  132. while ((temp = input.read(buffer)) != -1) {
  133. output.write(buffer, 0, temp);
  134. }
  135. output.flush();
  136. } catch (Exception e) {
  137. e.printStackTrace();
  138. } finally {
  139. try {
  140. output.close();
  141. } catch (Exception e) {
  142. e.printStackTrace();
  143. }
  144. }
  145. return file;
  146. }
  147.  
  148. /**
  149. * 读取文件
  150. *
  151. * @param dir
  152. * 所在目录
  153. * @param fileName
  154. * @return
  155. */
  156. public String loadData(String dir, String fileName) {
  157. File file = new File(SDCardRoot + dir + File.separator + fileName);
  158. if (!file.exists()) {
  159. return null;
  160. }
  161. InputStream inputStream = null;
  162. try {
  163. inputStream = new BufferedInputStream(new FileInputStream(file));
  164. byte[] data = new byte[inputStream.available()];
  165. inputStream.read(data);
  166. return new String(data);
  167. } catch (FileNotFoundException e) {
  168. // TODO Auto-generated catch block
  169. e.printStackTrace();
  170. } catch (IOException e) {
  171. // TODO: handle exception
  172. } finally {
  173. if (inputStream != null) {
  174. try {
  175. inputStream.close();
  176. } catch (IOException e) {
  177. // TODO Auto-generated catch block
  178. e.printStackTrace();
  179. }
  180. }
  181. }
  182. return null;
  183. }
  184.  
  185. /**2015-7-30 by chen tong
  186. * 使用FileWriter在文件末尾添加内容
  187. */
  188. public void appendContent(File file, String content) {
  189. OutputStream outputStream = null;
  190. try {
  191. outputStream = new FileOutputStream(file, true);
  192. byte[] enter = new byte[2];
  193. enter[0] = 0x0d;
  194. enter[1] = 0x0a;// 用于输入换行符的字节码
  195. String finalString = new String(enter);// 将该字节码转化为字符串类型
  196. content = content + finalString;
  197. outputStream.write(content.getBytes());
  198. outputStream.flush();
  199. } catch (FileNotFoundException e) {
  200. // TODO Auto-generated catch block
  201. e.printStackTrace();
  202. } catch (IOException e) {
  203. // TODO Auto-generated catch block
  204. e.printStackTrace();
  205. } finally {
  206. try {
  207. outputStream.close();
  208. } catch (IOException e) {
  209. // TODO Auto-generated catch block
  210. e.printStackTrace();
  211. }
  212. }
  213.  
  214. }
  215. }

调用就很简单了:

  1. FileUtils fileUtils = new FileUtils();
  2. System.out.println(fileUtils.loadData("GPS信息", "test.txt"));//前面是目录文件夹名称,后面是文件的名称
  1. if (!fileUtils.isFileExist("Bluetooth温度数据", "")) {
  2. fileUtils.creatSDDir("Bluetooth温度数据");
  3. }
  4. try {
  5. File file = fileUtils.createFileInSDCard("数据1.txt", "Bluetooth温度数据");//在sd下创建"Bluetooth温度数据"文件夹,并创建数据1.txt文件
  6. fileUtils.appendContent(file, "ss");
  7. } catch (IOException e) {
  8. // TODO Auto-generated catch block
  9. e.printStackTrace();
  10. }

********************************************************************************************分割线******************************************************************************************************************

一开始以为需要使用二维数组的方式按照一定的格式写书数据到文本中,但是后来想了下,不需要合并两个一数组了,下面看代码,我是在java项目中写了,很简单:

  1. import java.io.File;
  2. import java.io.FileWriter;
  3. import java.io.IOException;
  4.  
  5. public class ValueWrite {
  6.  
  7. public static void main(String[] args) {
  8. // TODO Auto-generated method stub
  9. double[] aa = {1.52,2.36,3.52,4.21};
  10. double[] bb = {2.81,4.35,6.32,8.96};
  11. int n = aa.length;
  12. File file = new File("/media/stroe_room/桌面/test.txt");
  13. try {
  14. FileWriter out = new FileWriter(file);
  15. for (int i = 0; i < n; i++) {
  16. out.write(aa[i]+"\t"+bb[i]+"\r\n");//“\t”表示的是TAB,而“\r\n”表示的是回车换行
  17. }
  18. out.close();
  19. } catch (IOException e) {
  20. // TODO Auto-generated catch block
  21. e.printStackTrace();
  22. }
  23.  
  24. }
  25.  
  26. }

最终的效果图:

android读写SD卡封装的类的更多相关文章

  1. Android 读写SD卡的文件

    今天介绍一下Android 读写SD卡的文件,要读写SD卡上的文件,首先需要判断是否存在SD卡,方法: Environment.getExternalStorageState().equals(Env ...

  2. android 读写sd卡的权限设置

    原文:android 读写sd卡的权限设置 在Android中,要模拟SD卡,要首先使用adb的mksdcard命令来建立SD卡的镜像,如何建立,大家上网查一下吧,应该很容易找到,这里不说这个问题. ...

  3. Android读写SD卡

    SD卡的读写是我们在开发Android 应用程序过程中最常见的操作.下面介绍SD卡的读写操作方式: 1. 获取SD卡的根目录 String sdCardRoot = Environment.getEx ...

  4. android 读写SD卡文件

    参考: http://www.oschina.net/code/snippet_176897_7336#11699 写文件: private void SavedToText(Context cont ...

  5. android学习笔记47——读写SD卡上的文件

    读写SD卡上的文件 通过Context的openFileInput.openFileOutput来打开文件输入流.输出流时,程序打开的都是应用程序的数据文件夹里的文件,其存储的文件大小可能都比较有限- ...

  6. Android 常见SD卡操作

    目录 Android 常见SD卡操作 Android 常见SD卡操作 参考 https://blog.csdn.net/mad1989/article/details/37568667. [0.] E ...

  7. Android 检测SD卡应用

    Android 检测SD卡应用 //                                    Environment.MEDIA_MOUNTED // sd卡在手机上正常使用状态  // ...

  8. android 获取sd卡根目录

    dir:/storage/emulated/0 也就是 sdcard目录 ====== android 获取sd卡根目录 public String getSDPath(){        File ...

  9. Android获取SD卡路径及SDCard内存的方法

    这篇文章主要介绍了Android获取SD卡路径及SDCard内存的方法,较为详细的分析了Android针对SD卡操作所涉及的类及其具体函数功能,非常具有实用价值,需要的朋友可以参考下 本文实例讲述了A ...

随机推荐

  1. window下rails4.1 发生TZInfo::DataSourceNotFound 错误 - smallbottle

    在官网上学习rails 4.1 ,启动rails server之后发生了如下错误 $ rails server Booting WEBrick Rails 4.1.0 application star ...

  2. Eclipse调试Java程序技巧

    主要步骤.Debug As"->"Java Application".双击设置断点,F5是跳进,F6是执行下一步,F7是跳出 在看这篇文章前,我推荐你看一下Ecli ...

  3. 数据库 连接(join)

    转自http://www.cnblogs.com/caozengling/p/5318696.html 数据库中飞内连接,自然连接,外连接 数据库中的连接join氛围内连接,自然连接,外连接,外连接又 ...

  4. 超级台阶 (NYOJ—76)

    很简单的高中数学题,写出来主要是提醒自己,写完递推公式(尤其是公式)一定要检查多遍. #include<stdio.h> #include<string.h> int M; i ...

  5. 《Linux内核设计与实现》读书笔记(二)- 内核开发的准备

    在尝试内核开发之前,需要对内核有个整体的了解. 主要内容: 获取内核源码 内核源码的结构 编译内核的方法 内核开发的特点 1. 获取内核源码 内核是开源的,所有获取源码特别方便,参照以下的网址,可以通 ...

  6. lable对picbox透明

    为了登录美观一些,就在窗体上加了个picbox.并且充满了整个窗体. 往上面放了几个lable,把lable属性设置Transparent.本想着lable不会有底色,实际上有个底,很难看. 解决办法 ...

  7. C#回调函数的简单讲解与应用例子

    using System; namespace CallBackTest{ class Program //用户层,执行输入等操作 { static void Main(string[] args) ...

  8. jexus处理静态文件(处理后缀)

    AspNet_Exts=txt就能把你指定的扩展名交给asp.net处理.同理,可以写很多个,AspNet_Exts=txt,htm,html

  9. (JAVA)String类型的逻辑语句编译

    项目中遇到了动态配置条件触发相应事件的需求,需要根据String类型的逻辑语句,以及动态获取的数据,计算数据对应的结果,java实现.解决思路及代码实现如下,有需要的同学请自取. 一.需求提取 根据需 ...

  10. [WIP]php入門

    创建: 2019/06/19 安装  MAMP   变量与运算符  php标签  <?php ... ?> <?php ... ?> ● 在文件最后的 ?> 通常省略, ...