Android将Assert中文件复制到数据库 Java中将a文件内容复制到b文件

      需求,将数据库**.db文件复制到 /data/data/包名/files文件中去,作为数据库使用

                  将a文件内容复制到b文件中去

    【知识的简单回顾:将文件I/O流的输入输出流的使用--》copy】

代码如下:

/*
 	 * //path  把address.db这个数据库拷贝到data/data/包名/files/address.db
 	 */
	private void copyDb(String filename) {
//只要你拷贝了一次,我就不要你再拷贝了
		try {
			//在指定的目录创建了 database.db文件
			File file=new File(getFilesDir(), filename);
			if(file.exists()&&file.length()>0){
				//正常了,不需要拷贝了
			    Log.i(TAG,"正常了,不需要拷贝了");
			}else{
				InputStream is=getAssets().open(filename);
				
				FileOutputStream fos=new FileOutputStream(file);
				byte[] buffer=new byte[1024];
				int len=0;
				len=is.read(buffer);
				while(len!=-1){
					fos.write(buffer,0,len);
					len=is.read(buffer);
				}
				is.close();
				fos.close();
				} 
			}
		catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}

Java文件copy。

public class FileInputOutputStreamTest {
	public static void main(String[] args) {
		File af = new File("D:/temp/a.txt");
		File bf = new File("D:/temp/b.txt");
		FileInputStream is = null;
		FileOutputStream os = null;
		if (!bf.exists()) {
			try {
				bf.createNewFile();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
		try {
			is = new FileInputStream(af);
			os = new FileOutputStream(bf);
			byte b[] = new byte[1024];
			int len;
			try {
				len = is.read(b);
				while (len != -1) {
					os.write(b, 0, len);
					len = is.read(b);
				}
				System.out.println("文件内容复制成功!");
			} catch (IOException e) {
				e.printStackTrace();
			}
		} catch (FileNotFoundException e) {
			e.printStackTrace();
		} finally {
			try {
				if (is != null)
					is.close();
				if (os != null)
					os.close();
			} catch (IOException e) {
				e.printStackTrace();
			}
		}
	}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ItJavawfc

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>