Android获取assets文件夹中的数据并写入SD卡示例

Android获取assets文件夹中的数据并写入SD卡示例,第1张

概述本文示例主要实现了Android获取assets文件夹中的数据并将其写入到SD卡中,该程序实现的步骤主要为:首先读取assets文件夹中的数据库,再将其写入到SD存储卡中。

本文示例主要实现了AndroID获取assets文件夹中的数据并将其写入到SD卡中,该程序实现的步骤主要为:首先读取assets文件夹中的数据库,再将其写入到SD存储卡中。

完整示例代码如下:

import java.io.file;import java.io.fileOutputStream;import java.io.IOException;import java.io.inputStream;import androID.content.Context;/*将assets文件夹下的数据库写入SD卡中 * @author Dave */public class WritetoSD { private Context context; String filePath = androID.os.Environment.getExternalStorageDirectory()+"/weather"; public WritetoSD(Context context){ this.context = context; if(!isExist()){  write(); } } private voID write(){ inputStream inputStream; try {  inputStream = context.getResources().getAssets().open("addressID.db");  file file = new file(filePath);  if(!file.exists()){  file.mkdirs();  }  fileOutputStream fileOutputStream = new fileOutputStream(filePath + "/database.db");  byte[] buffer = new byte[512];  int count = 0;  while((count = inputStream.read(buffer)) > 0){  fileOutputStream.write(buffer,count);  }  fileOutputStream.flush();  fileOutputStream.close();  inputStream.close();  System.out.println("success"); } catch (IOException e) {  e.printstacktrace(); } } private boolean isExist(){ file file = new file(filePath + "/database.db"); if(file.exists()){  return true; }else{  return false; } }}
总结

以上是内存溢出为你收集整理的Android获取assets文件夹中的数据并写入SD卡示例全部内容,希望文章能够帮你解决Android获取assets文件夹中的数据并写入SD卡示例所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1142413.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-31
下一篇 2022-05-31

发表评论

登录后才能评论

评论列表(0条)

保存