
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 · 873 阅读 · 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 · 2196 阅读 · 0 评论