From 5c4c75c2cb1855f9fa01df307c86ad0c24608c69 Mon Sep 17 00:00:00 2001
From: client_Hale <339726288@qq.com>
Date: 星期五, 26 十月 2018 11:32:37 +0800
Subject: [PATCH] 4241 安卓sdk增加拷贝当个文件接口
---
Project/mr_sdk/src/main/java/com/secondworld/univeralsdk/FileUtil.java | 25 +++++++++++++++++++++++++
1 files changed, 25 insertions(+), 0 deletions(-)
diff --git a/Project/mr_sdk/src/main/java/com/secondworld/univeralsdk/FileUtil.java b/Project/mr_sdk/src/main/java/com/secondworld/univeralsdk/FileUtil.java
index fbb1a8d..3ffcb8b 100644
--- a/Project/mr_sdk/src/main/java/com/secondworld/univeralsdk/FileUtil.java
+++ b/Project/mr_sdk/src/main/java/com/secondworld/univeralsdk/FileUtil.java
@@ -104,6 +104,31 @@
}).start();
}
+ public static void copy(Context context, String fileName)
+ {
+ String _originalPath = "android" + File.separator + fileName;
+ String _destPath = context.getExternalFilesDir(
+ "").getAbsolutePath() + File.separator + fileName;
+ try
+ {
+ InputStream _is = context.getAssets().open(_originalPath);
+ FileOutputStream _fos = new FileOutputStream(new File(_destPath));
+ byte[] _buffer = new byte[1024];
+ int _byteCount;
+ while ((_byteCount = _is.read(_buffer)) != -1)
+ {
+ _fos.write(_buffer, 0, _byteCount);
+ }
+ _fos.flush();
+ _is.close();
+ _fos.close();
+ LogUtil.i("FileUtil", "鍗曠嫭鎷疯礉 => 鏂囦欢: " + _originalPath + " 宸叉嫹璐濊嚦: " + _destPath);
+ } catch (Exception e)
+ {
+ e.printStackTrace();
+ }
+ }
+
public static void copy(Context context, String original, String dest)
{
try
--
Gitblit v1.8.0