assets下的文件复制到SD卡
由于assets和res下的文件都只可以读不可以写,那么在程序初始化后,将后期需要使用并且需要修改的文件复制到SD卡。下面代码提供一个工具类,将assets下的任意资源复制到SD卡下。
assets下的资源如下图:

下面是工具类:
AssetsCopyTOSDcard .java
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream; import android.content.Context;
import android.content.res.AssetManager;
import android.os.Environment; public class AssetsCopyTOSDcard {
Context context; public AssetsCopyTOSDcard(Context context) {
super();
this.context = context;
} /**
* @param context
* @param assetpath asset下的路径
* @param SDpath SDpath下保存路径
*/
public void AssetToSD(String assetpath,String SDpath ){ AssetManager asset=context.getAssets();
//循环的读取asset下的文件,并且写入到SD卡
String[] filenames=null;
FileOutputStream out = null;
InputStream in=null;
try {
filenames = asset.list(assetpath);
if(filenames.length>0){//说明是目录
//创建目录
getDirectory(assetpath); for(String fileName:filenames){
AssetToSD(assetpath+"/"+fileName, SDpath+"/"+fileName);
}
}else{//说明是文件,直接复制到SD卡
File SDFlie=new File(SDpath);
String path=assetpath.substring(0, assetpath.lastIndexOf("/"));
getDirectory(path); if(!SDFlie.exists()){
SDFlie.createNewFile();
}
//将内容写入到文件中
in=asset.open(assetpath);
out= new FileOutputStream(SDFlie);
byte[] buffer = new byte[1024];
int byteCount=0;
while((byteCount=in.read(buffer))!=-1){
out.write(buffer, 0, byteCount);
}
out.flush();
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}finally{
try {
out.close();
in.close();
asset.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} }
}
//分级建立文件夹
public void getDirectory(String path){
//对SDpath进行处理,分层级建立文件夹
String[] s=path.split("/");
String str=Environment.getExternalStorageDirectory().toString();
for (int i = 0; i < s.length; i++) {
str=str+"/"+s[i];
File file=new File(str);
if(!file.exists()){
file.mkdir();
}
} }
}
MainActivity .java
import android.os.Bundle;
import android.os.Environment;
import android.app.Activity;
import android.view.Menu; public class MainActivity extends Activity { @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
String path="aaa/a1.txt";
AssetsCopyTOSDcard assetsCopyTOSDcard=new AssetsCopyTOSDcard(getApplicationContext());
assetsCopyTOSDcard.AssetToSD(path,Environment.getExternalStorageDirectory().toString()+"/"+path);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
测试路径:
aaa
Aaa/bbb
Aaa/bbb/ba.txt
Aaa/a1.txt
在编程过程中遇到的两个问题:
open failed: ENOENT (No such file or directory)
open failed: EISDIR (Is a directory)
错误修改
if(!SDFlie.exists()){
SDFlie.createNewFile();
}
//将内容写入到文件中
in=asset.open(assetpath);
out= new FileOutputStream(SDFlie);
byte[] buffer = new byte[1024];
int byteCount=0;
while((byteCount=in.read(buffer))!=-1){
out.write(buffer, 0, byteCount);
}
out.flush();
修改为:
if(!SDFlie.exists()){
SDFlie.createNewFile();
//将内容写入到文件中
in=asset.open(assetpath);
out= new FileOutputStream(SDFlie);
byte[] buffer = new byte[1024];
int byteCount=0;
while((byteCount=in.read(buffer))!=-1){
out.write(buffer, 0, byteCount);
}
}
out.flush();
因为当文件存在时,不复制。不修改的情况下,out.close();会报空指针异常。
finally{
try {
out.close();
in.close();
asset.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
修改为:
finally{
try {
if(out!=null){
out.close();
out=null;
}
if(in!=null){
in.close();
in=null;
}
/**
* 关闭报错,java.lang.RuntimeException:
* Unable to start activity ComponentInfo
* {com.example.wealth/com.example.wealth.UI.main}:
* java.lang.RuntimeException: Assetmanager has been closed
*/
// if(asset!=null){
// asset.close();
// asset=null;
// }
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
转: https://blog.csdn.net/qq_17326933/article/details/48450487
assets下的文件复制到SD卡的更多相关文章
- Android 访问assets下的文件
assets下经常可以放一些比较大的资源,对于这些资源我们如何访问. 步骤 1.获取AssetManager. AssetManager am = getResources().getAssets() ...
- Android 下载文件及写入SD卡
Android 下载文件及写入SD卡,实例代码 <?xml version="1.0" encoding="utf-8"?> <LinearL ...
- Android 将文件保存到SD卡中
①写文件到sd卡中需要获得权限,在AndroidManifest.xml中添加如下权限: <uses-permission android:name="android.permissi ...
- [置顶] Android学习系列-把文件保存到SD卡上面(6)
Android学习系列-把文件保存到SD卡上面(5) 一般多媒体文件,大文件需要保存到SD卡中.关键点如下: 1,SD卡保存目录:mnt/sdcard,一般采用Environment.getExter ...
- Android项目使用Assets下的文件
Android项目在编译时,Assets下文件不被编译. Assets下的文件除了 html文件可以直接在项目中使用外,其他的文件都需要做处理滴. 在项目中使用方法: 使用流读取. ...
- android 将项目下的数据库拷贝到sd卡中
/** * 将项目下的数据库拷贝到sd卡中 */ public static boolean copyDbToSdCard() { FileInputStream fis = null; FileOu ...
- asserts文件存到外部SD卡里
package com.example.wang.testapp3; import android.content.res.AssetManager; import android.graphics. ...
- C# 把一个文件夹下所有文件复制到另一个文件夹下 把一个文件夹下所有文件删除(转)
C# 把一个文件夹下所有文件复制到另一个文件夹下 public static void CopyDirectory(string srcPath, string destPath) { try { ...
- Android程序函数 将assets文件夹下的文件复制到手机的sd卡中(包括子文件夹)
最近在做个功能是将asset文件夹下的所有文件(包括子文件)全部拷贝出来到指定目录下.所用的方法无非是用AssetManager.但是这里 有个问题是也要讲子文件夹和子文件都要拷贝出来.到网上Goog ...
随机推荐
- rem自适应手机端布局
通过js根据屏幕设备尺寸的大小,改变根元素的值: <script> var html = document.querySelector("html"); var rem ...
- 在C#中,Json的序列化和反序列化的几种方式总结 转载
转载自 https://www.cnblogs.com/caofangsheng/p/5687994.html 谢谢 在这篇文章中,我们将会学到如何使用C#,来序列化对象成为Json格式的数据 ...
- helm-chart-1-简单概念介绍-仓库搭建-在rancher上的使用
简单的概念介绍: Chart是helm管理的应用的打包格式,一个chart对应一个或一套应用.内部是一系列的yaml描述文件,以为为yaml 服务的文件. 三个部分,helm .tiller.repo ...
- javascript——10章 DOM
1.节点关系 (1)childNodes:返回节点的子节点集合 返回值:NodeList 对象,表示节点集合. 注:childNodes只能取到子级,不能取到子级的子级. childNodes所有节点 ...
- pygame-KidsCanCode系列jumpy-part11-角色动画(下)
接上节继续,上节并没有处理向左走.向右走的动画效果,这节补上,看似很简单,但是有一些细节还是要注意: def jump(self): hits = pg.sprite.spritecollide(se ...
- Delphi 获取当前鼠标下的控件内容
Delphi 获取当前鼠标下的控件内容 主要函数: GetCursorPos://获取鼠标的位置 WindowFromPoint://获取制定point下的handle GetClassName:// ...
- 配置gitlab通过smtp发送邮件
1. 编辑/etc/gitlab/gitlab.rb文件(加到文件最后面就好了,或者通过搜索找到,新版已有这些配置,只不过都是被注释掉了).以QQ企业邮箱为例: gitlab_rails['smtp_ ...
- Print all attributes and values in a Javascript Object
function printObject(o) { var out = ''; for (var p in o) { out += '\n' + ':: ' + p + '(' + typeof(o[ ...
- SpringBoot项目接口第一次访问慢的问题
SpringBoot的接口第一次访问都很慢,通过日志可以发现,dispatcherServlet不是一开始就加载的,有访问才开始加载的,即懒加载. 2019-01-25 15:23:46.264 IN ...
- .NET/C# 资源
.NET/C# 开源资源收集 Roslyn ---C# 开源编译器 iSpy免费的开源视频监控平台 https://github.com/ispysoftware/iSpy .NET Fram ...