文件读写操作(含SDCard的读写)
1.在AndroidManifest文件下添加SDCard的读写权限
- <!-- 在SDCard中创建与删除文件权限 -->
- <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
- <!-- 往SDCard写入数据权限 -->
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
- <!-- 在SDCard中创建与删除文件权限 -->
- <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
- <!-- 往SDCard写入数据权限 -->
- <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
2.文件操作的各种模式如下代码:(注意通过getExternalStorageDirectory方法获取SDCard的文件路径)
- package com.hoo.file;
- import java.io.ByteArrayOutputStream;
- import java.io.File;
- import java.io.FileInputStream;
- import java.io.FileOutputStream;
- import android.content.Context;
- import android.os.Environment;
- public class FileService
- {
- private Context context;
- public FileService(Context context)
- {
- this.context = context;
- }
- /**
- * 读取文件的内容
- * @param filename 文件名称
- * @return
- * @throws Exception
- */
- public String readFile(String filename) throws Exception
- {
- //获得输入流
- FileInputStream inStream = context.openFileInput(filename);
- //new一个缓冲区
- byte[] buffer = new byte[1024];
- int len = 0;
- //使用ByteArrayOutputStream类来处理输出流
- ByteArrayOutputStream outStream = new ByteArrayOutputStream();
- while( (len = inStream.read(buffer))!= -1)
- {
- //写入数据
- outStream.write(buffer, 0, len);
- }
- //得到文件的二进制数据
- byte[] data = outStream.toByteArray();
- //关闭流
- outStream.close();
- inStream.close();
- return new String(data);
- }
- /**
- * 以默认私有方式保存文件内容至SDCard中
- * @param filename
- * @param content
- * @throws Exception
- */
- public void saveToSDCard(String filename, String content) throws Exception
- {
- //通过getExternalStorageDirectory方法获取SDCard的文件路径
- File file = new File(Environment.getExternalStorageDirectory(), filename);
- //获取输出流
- FileOutputStream outStream = new FileOutputStream(file);
- outStream.write(content.getBytes());
- outStream.close();
- }
- /**
- * 以默认私有方式保存文件内容,存放在手机存储空间中
- * @param filename
- * @param content
- * @throws Exception
- */
- public void save(String filename, String content) throws Exception
- {
- //
- FileOutputStream outStream = context.openFileOutput(filename, Context.MODE_PRIVATE);
- outStream.write(content.getBytes());
- outStream.close();
- }
- /**
- * 以追加的方式保存文件内容
- * @param filename 文件名称
- * @param content 文件内容
- * @throws Exception
- */
- public void saveAppend(String filename, String content) throws Exception
- {
- FileOutputStream outStream = context.openFileOutput(filename, Context.MODE_APPEND);
- outStream.write(content.getBytes());
- outStream.close();
- }
- /**
- * 以允许其他应用从该文件中读取内容的方式保存文件(Context.MODE_WORLD_READABLE)
- * @param filename 文件名称
- * @param content 文件内容
- * @throws Exception
- */
- public void saveReadable(String filename, String content) throws Exception
- {
- FileOutputStream outStream = context.openFileOutput(filename, Context.MODE_WORLD_READABLE);
- outStream.write(content.getBytes());
- outStream.close();
- }
- /**
- * 以允许其他应用往该文件写入内容的方式保存文件
- * @param filename 文件名称
- * @param content 文件内容
- * @throws Exception
- */
- public void saveWriteable(String filename, String content) throws Exception
- {
- FileOutputStream outStream = context.openFileOutput(filename, Context.MODE_WORLD_WRITEABLE);
- outStream.write(content.getBytes());
- outStream.close();
- }
- /**
- * 以允许其他应用对该文件读和写的方式保存文件(MODE_WORLD_READABLE与MODE_WORLD_WRITEABLE)
- * @param filename 文件名称
- * @param content 文件内容
- * @throws Exception
- */
- public void saveRW(String filename, String content) throws Exception
- {
- FileOutputStream outStream = context.openFileOutput(filename,
- Context.MODE_WORLD_READABLE + Context.MODE_WORLD_WRITEABLE);
- //Context.MODE_WORLD_READABLE(1) + Context.MODE_WORLD_WRITEABLE(2),其实可用3替代
- outStream.write(content.getBytes());
- outStream.close();
- }
- }
- package com.hoo.file;
- import java.io.ByteArrayOutputStream;
- import java.io.File;
- import java.io.FileInputStream;
- import java.io.FileOutputStream;
- import android.content.Context;
- import android.os.Environment;
- public class FileService
- {
- private Context context;
- public FileService(Context context)
- {
- this.context = context;
- }
- /**
- * 读取文件的内容
- * @param filename 文件名称
- * @return
- * @throws Exception
- */
- public String readFile(String filename) throws Exception
- {
- //获得输入流
- FileInputStream inStream = context.openFileInput(filename);
- //new一个缓冲区
- byte[] buffer = new byte[1024];
- int len = 0;
- //使用ByteArrayOutputStream类来处理输出流
- ByteArrayOutputStream outStream = new ByteArrayOutputStream();
- while( (len = inStream.read(buffer))!= -1)
- {
- //写入数据
- outStream.write(buffer, 0, len);
- }
- //得到文件的二进制数据
- byte[] data = outStream.toByteArray();
- //关闭流
- outStream.close();
- inStream.close();
- return new String(data);
- }
- /**
- * 以默认私有方式保存文件内容至SDCard中
- * @param filename
- * @param content
- * @throws Exception
- */
- public void saveToSDCard(String filename, String content) throws Exception
- {
- //通过getExternalStorageDirectory方法获取SDCard的文件路径
- File file = new File(Environment.getExternalStorageDirectory(), filename);
- //获取输出流
- FileOutputStream outStream = new FileOutputStream(file);
- outStream.write(content.getBytes());
- outStream.close();
- }
- /**
- * 以默认私有方式保存文件内容,存放在手机存储空间中
- * @param filename
- * @param content
- * @throws Exception
- */
- public void save(String filename, String content) throws Exception
- {
- //
- FileOutputStream outStream = context.openFileOutput(filename, Context.MODE_PRIVATE);
- outStream.write(content.getBytes());
- outStream.close();
- }
- /**
- * 以追加的方式保存文件内容
- * @param filename 文件名称
- * @param content 文件内容
- * @throws Exception
- */
- public void saveAppend(String filename, String content) throws Exception
- {
- FileOutputStream outStream = context.openFileOutput(filename, Context.MODE_APPEND);
- outStream.write(content.getBytes());
- outStream.close();
- }
- /**
- * 以允许其他应用从该文件中读取内容的方式保存文件(Context.MODE_WORLD_READABLE)
- * @param filename 文件名称
- * @param content 文件内容
- * @throws Exception
- */
- public void saveReadable(String filename, String content) throws Exception
- {
- FileOutputStream outStream = context.openFileOutput(filename, Context.MODE_WORLD_READABLE);
- outStream.write(content.getBytes());
- outStream.close();
- }
- /**
- * 以允许其他应用往该文件写入内容的方式保存文件
- * @param filename 文件名称
- * @param content 文件内容
- * @throws Exception
- */
- public void saveWriteable(String filename, String content) throws Exception
- {
- FileOutputStream outStream = context.openFileOutput(filename, Context.MODE_WORLD_WRITEABLE);
- outStream.write(content.getBytes());
- outStream.close();
- }
- /**
- * 以允许其他应用对该文件读和写的方式保存文件(MODE_WORLD_READABLE与MODE_WORLD_WRITEABLE)
- * @param filename 文件名称
- * @param content 文件内容
- * @throws Exception
- */
- public void saveRW(String filename, String content) throws Exception
- {
- FileOutputStream outStream = context.openFileOutput(filename,
- Context.MODE_WORLD_READABLE + Context.MODE_WORLD_WRITEABLE);
- //Context.MODE_WORLD_READABLE(1) + Context.MODE_WORLD_WRITEABLE(2),其实可用3替代
- outStream.write(content.getBytes());
- outStream.close();
- }
- }
3.写入数据前判断sdcard是否存在于手机上,是否有写保护
- package com.hoo.file;
- import android.app.Activity;
- import android.os.Bundle;
- import android.os.Environment;
- import android.util.Log;
- import android.view.View;
- import android.widget.Button;
- import android.widget.EditText;
- import android.widget.Toast;
- public class MainActivity extends Activity
- {
- private static final String TAG = "MainActivity";
- private FileService fileService;
- @Override
- public void onCreate(Bundle savedInstanceState)
- {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- fileService = new FileService(this);
- //使用下面的方法可以快速获取当前文件夹的位置,
- //这样可以在后面追加路径从而避免使用绝对路径
- //File filedir = this.getFilesDir();
- Button button = (Button) this.findViewById(R.id.button);
- button.setOnClickListener(new View.OnClickListener()
- {
- @Override
- public void onClick(View v)
- {
- //获取EditText中的内容
- EditText filenameText = (EditText) findViewById(R.id.filename);
- EditText contentText = (EditText) findViewById(R.id.filecontent);
- String filename = filenameText.getText().toString();
- String content = contentText.getText().toString();
- try
- {
- //使用通常文件保存方式,默认保存在data/data/包名/file/XXX里面
- //fileService.save(filename, content);
- //判断sdcard是否存在于手机上而且没有写保护
- //Android2.2版本以后sdcard的路径在mnt/sdcard,2.2之前在/sdcard
- if(Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED))
- {
- //保存到SDCard中
- fileService.saveToSDCard(filename, content);
- //提示保存成功
- Toast.makeText(MainActivity.this, R.string.success, 1).show();
- }
- else
- {
- //提示保存失败
- Toast.makeText(MainActivity.this, R.string.sdcarderror, 1).show();
- }
- }
- catch (Exception e)
- {
- Log.e(TAG, e.toString());
- Toast.makeText(MainActivity.this, R.string.error, 1).show();
- }
- }
- });
- }
- }
- package com.hoo.file;
- import android.app.Activity;
- import android.os.Bundle;
- import android.os.Environment;
- import android.util.Log;
- import android.view.View;
- import android.widget.Button;
- import android.widget.EditText;
- import android.widget.Toast;
- public class MainActivity extends Activity
- {
- private static final String TAG = "MainActivity";
- private FileService fileService;
- @Override
- public void onCreate(Bundle savedInstanceState)
- {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- fileService = new FileService(this);
- //使用下面的方法可以快速获取当前文件夹的位置,
- //这样可以在后面追加路径从而避免使用绝对路径
- //File filedir = this.getFilesDir();
- Button button = (Button) this.findViewById(R.id.button);
- button.setOnClickListener(new View.OnClickListener()
- {
- @Override
- public void onClick(View v)
- {
- //获取EditText中的内容
- EditText filenameText = (EditText) findViewById(R.id.filename);
- EditText contentText = (EditText) findViewById(R.id.filecontent);
- String filename = filenameText.getText().toString();
- String content = contentText.getText().toString();
- try
- {
- //使用通常文件保存方式,默认保存在data/data/包名/file/XXX里面
- //fileService.save(filename, content);
- //判断sdcard是否存在于手机上而且没有写保护
- //Android2.2版本以后sdcard的路径在mnt/sdcard,2.2之前在/sdcard
- if(Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED))
- {
- //保存到SDCard中
- fileService.saveToSDCard(filename, content);
- //提示保存成功
- Toast.makeText(MainActivity.this, R.string.success, 1).show();
- }
- else
- {
- //提示保存失败
- Toast.makeText(MainActivity.this, R.string.sdcarderror, 1).show();
- }
- }
- catch (Exception e)
- {
- Log.e(TAG, e.toString());
- Toast.makeText(MainActivity.this, R.string.error, 1).show();
- }
- }
- });
- }
- }
文件读写操作(含SDCard的读写)的更多相关文章
- python 文件读写操作(24)
以前的代码都是直接将数据输出到控制台,实际上我们也可以通过读/写文件的方式读取/输出到磁盘文件中,文件读写简称I/O操作.文件I/O操作一共分为四部分:打开(open)/读取(read)/写入(wri ...
- QFile 对文件进行读写操作
QFile 对文件进行读写操作 1 QFile 进行读写操纵 2 QFile file(pah ) 文件路径 3 读 file.open(打开方式) file.readAll(). file.re ...
- c语言文件读写操作总结
C语言文件读写操作总结 C语言文件操作 一.标准文件的读写 1.文件的打开 fopen() 文件的打开操作表示将给用户指定的文件在内存分配一个FILE结构区,并将该结构的指针返回给用户程序,以后用户程 ...
- [转]Android - 文件读写操作 总结
转自:http://blog.csdn.net/ztp800201/article/details/7322110 Android - 文件读写操作 总结 分类: Android2012-03-05 ...
- Android - 文件读写操作 总结
在android中的文件放在不同位置,它们的读取方式也有一些不同. 本文对android中对资源文件的读取.数据区文件的读取.SD卡文件的读取及RandomAccessFile的方式和方法进行了整理. ...
- C++学习48 对ASCII文件的读写操作
如果文件的每一个字节中均以ASCII代码形式存放数据,即一个字节存放一个字符,这个文件就是ASCII文件(或称字符文件).程序可以从ASCII文件中读入若干个字符,也可以向它输出一些字符. 对ASCI ...
- android报错及解决2--Sdcard进行文件的读写操作报的异常
报错描述: 对Sdcard进行文件的读写操作的时候,报java.io.FileNotFoundException: /sdcard/testsd.txt (Permission denied),在往S ...
- Windows下使用scapy+python2.7实现对pcap文件的读写操作
scapy在linux环境中对pcap文件进行操作非常方便,但在windows下,特别是在python2.7环境下却会碰到各种各样的依赖包无法使用的问题,最明显的可能就属dnet和pcap的pytho ...
- PHP文件读写操作之文件写入代码
在PHP网站开发中,存储数据通常有两种方式,一种以文本文件方式存储,比如txt文件,一种是以数据库方式存储,比如Mysql,相对于数据库存储,文件存储并没有什么优势,但是文件读写操作在基本的PHP开发 ...
随机推荐
- 【原】jQuery编写插件
分享一下编写设置和获取颜色的插件,首先我将插件的名字命名为jquery.color.js.该插件用来实现以下两个功能1.设置元素的颜色.2.获取元素的颜色. 先在搭建好如下编写插件的框架: ;(fun ...
- iOS - 沙盒机制
iOS应用程序只能在为该程序创建的文件系统中读取文件,不可以去其他地方访问,此区域被称为沙盒.所有的非代码文件都要保存在此,例如图像,图标,声音,属性列表(plist文件),文本文件等.沙盒机制作为一 ...
- ARM内核全解析,从ARM7,ARM9到Cortex-A7,A8,A9,A12,A15到Cortex-A53,A57
转自: ARM内核全解析,从ARM7,ARM9到Cortex-A7,A8,A9,A12,A15到Cortex-A53,A57 前不久ARM正式宣布推出新款ARMv8架构的Cortex-A50处理器系列 ...
- 中间人攻击之arp欺骗 科普ARP欺骗
中间人攻击之arp欺骗 科普ARP欺骗 A <-> B A中有个ARP Table,每次发包都会在此Table中查找,若找不到,发APR Request包询问.此时若hacker冒充B的M ...
- Xamarin 开发常见问题
原文:Xamarin 开发常见问题 Verify the project is selected to be deployed in the Solution Configuration Manage ...
- delphi中WEBBrowser网页html相互调用(一)
1.基本操作1.1.激活 var doc,url:Olevariant ; begin url:='about:blank' ;//或者一个有实际意义的url WebBrowser1.Navigate ...
- JIRA Cannot Start Due to 'unable to clean the cache directory: /opt/jira/plugins/.osgi-plugins/felix'
Symptoms After restarting JIRA, the following error appeared: JIRA Startup Failed You cannot access ...
- MOSS母板页制作 学习笔记(一)
转:http://xiachanghao1990.blog.163.com/blog/static/4869602420114235536573/ 母版页制作其实应该算是一个比较基础的工作,但是熟练制 ...
- 【转】修改eclipse中的M2_REPO变量
转自:http://superseven.iteye.com/blog/1625429 从eclipse中增加了maven2的插件之后,maven默认的本地库的路径是${user}/.m2/repos ...
- HDU 5950 Recursive sequence 【递推+矩阵快速幂】 (2016ACM/ICPC亚洲区沈阳站)
Recursive sequence Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Other ...