Android文件操作
GB_young
Loving development!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
androidzip方式解压缩
public static void unZipFile(String targetPath, String zipFilePath) { try { File zipFile = new File(zipFilePath); InputStream is = new FileInputStream(zipFile); ZipInputStream zis = new Zip原创 2013-04-30 22:29:57 · 906 阅读 · 0 评论 -
android从assets目录复制到sd卡
public static void copyFileFromAssetsToSDCard() throws Throwable { InputStream inStream = this.getAssets().open("hello.zip"); String filePath = android.os.Environment.getExternalStorageDirectory()原创 2013-04-30 22:28:16 · 2239 阅读 · 0 评论
分享