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;
                      }

             }
    }

  • 相关阅读:
    pycharm优化
    Shell基本命令
    Django项目订单接入支付宝
    浏览器的同源策略及跨域解决方案
    python datetime时区转换
    Django contenttypes 组件
    MySQL使用版本号实现乐观锁
    MySQL DDL Demo
    Redis分布式锁
    Zookeeper分布式锁
  • 原文地址:https://www.cnblogs.com/zhangping/p/3513833.html
Copyright © 2011-2022 走看看