今天遇见了一个需求,后台给我们一个图标和颜色的zip,让我们前端使用的图标和颜色配置都从后台读取,以方便以后的调整。想要改变图标或是整体颜色,直接在后台更改zip版本,就能使ios和Android都更新了,不用在前端修改,这样可以说一劳永逸。解决了很多问题。那么现在面临第一个问题,就是解压本地的zip并获取数据。我这里写了一个demo。记录一下:
首先在清单文件添加权限:
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
然后创建zip工具类:
public class ZipFloderUtil { /** * 解压缩功能. 将zipFile文件解压到folderPath目录下. * * @throws Exception */ public static void upZipFile(String zipFile, String folderPath) throws ZipException, IOException { ZipFile zfile = new ZipFile(zipFile); Enumeration zList = zfile.entries(); ZipEntry ze = null; byte[] buf = new byte[1024]; while (zList.hasMoreElements()) { ze = (ZipEntry) zList.nextElement(); if (ze.isDirectory()) { Log.d("upZipFile", "ze.getName() = " + ze.getName()); String dirstr = folderPath + ze.getName(); // dirstr.trim(); dirstr = new String(dirstr.getBytes("8859_1"), "GB2312"); Log.d("upZipFile", "str = " + dirstr); File f = new File(dirstr); f.mkdir(); continue; } Log.d("upZipFile", "ze.getName() = " + ze.getName()); OutputStream os = new BufferedOutputStream(new FileOutputStream( getRealFileName(folderPath, ze.getName()))); InputStream is = new BufferedInputStream(zfile.getInputStream(ze)); int readLen = 0; while ((readLen = is.read(buf, 0, 1024)) != -1) { os.write(buf, 0, readLen); } is.close(); os.close(); } zfile.close(); Log.d("upZipFile", "finishssssssssssssssssssss"); } /** * 给定根目录,返回一个相对路径所对应的实际文件名. * * @param baseDir * 指定根目录 * @param absFileName * 相对路径名,来自于ZipEntry中的name * @return java.io.File 实际的文件 */ public static File getRealFileName(String baseDir, String absFileName) { String[] dirs = absFileName.split("/"); File ret = new File(baseDir); String substr = null; if (dirs.length > 1) { for (int i = 0; i < dirs.length - 1; i++) { substr = dirs[i]; try { // substr.trim(); substr = new String(substr.getBytes("8859_1"), "GB2312"); } catch (UnsupportedEncodingException e) { // TODO Auto-generated catch block e.printStackTrace(); } ret = new File(ret, substr); } Log.d("upZipFile", "1ret = " + ret); if (!ret.exists()) ret.mkdirs(); substr = dirs[dirs.length - 1]; try { // substr.trim(); substr = new String(substr.getBytes("8859_1"), "GB2312"); Log.d("upZipFile", "substr = " + substr); } catch (UnsupportedEncodingException e) { // TODO Auto-generated catch block e.printStackTrace(); } ret = new File(ret, substr); Log.d("upZipFile", "2ret = " + ret); return ret; } return ret; } }
使用java集成的zip工具进行解压。第一个方法是解压并保存到一个路径,第二个方法是读取解压后的数据。这里的demo是一张图片,所以我使用的是BitmapFactory
String zipPath = Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + "myfile.zip"; String filePath = Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + "file"; imageView = (ImageView) findViewById(R.id.imageView); try { ZipFloderUtil.upZipFile(zipPath,filePath); Bitmap bitmap = BitmapFactory.decodeFile(filePath+File.separator+"myskin/main.jpg"); imageView.setImageBitmap(bitmap); } catch (IOException e) { e.printStackTrace(); }
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦