zoukankan      html  css  js  c++  java
  • Android 从资产目录Assert中复制东西的工具类

    package com.itheima.mobilesafe.utils;

    import java.io.File;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.io.InputStream;

    import android.content.Context;

    public class AssetCopyUtils {  
             public static File copy(Context context, String fileName, String destPath) {
                      try {
                            InputStream is = context.getAssets().open(fileName);
                            File file = new File(destPath);
                            FileOutputStream fos = new FileOutputStream(file);
                            byte[] buffer = new byte[1024];
                            int len = 0;

                            while ((len = is.read(buffer)) != -1) {
                                  fos.write(buffer, 0, len);
                            }
                           fos.flush();
                           fos.close();
                           is.close();
                           return file;
                      } catch (Exception e) {
                          e.printStackTrace();
                          return null;
                      }

             }
    }

  • 相关阅读:
    ES8 Async 和 Await
    js中字节B转化成KB,MB,GB
    理解与使用JavaScript中的回调函数
    JavaScript与函数式编程
    Deno 意味着什么?
    call、apply、bind
    测量JavaScript函数的性能的简单方法及与其他方式对比
    promise
    SQL游标原理和使用方法
    SQL循环语句
  • 原文地址:https://www.cnblogs.com/zhangping/p/3513833.html
Copyright © 2011-2022 走看看