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

             }
    }

  • 相关阅读:
    MongoDB 基础API使用
    MongoDB -- JAVA基本API操作
    Docker数据管理
    Docker容器的简单使用
    Docker
    Centos 7.3 镜像制作
    Fuel部署OpenStack
    Fuel
    Ceph添加、删除osd及故障硬盘更换
    ceph常用命令
  • 原文地址:https://www.cnblogs.com/zhangping/p/3513833.html
Copyright © 2011-2022 走看看