时间:2021-05-21
之前项目中遇到个需求,总监让我们把从服务器下载下来的资源不解压直接读取里面的资源,这样的话就省去了一个个校验资源是否正确的步骤,听着貌似有点道理。。。废话不多说直接上代码。
目前我所试验过的可以读取的资源有文本、图片、xml文件。
文本:
zip包目录结构:res/txt/data.json
文件sd卡路径:android.os.Environment.getExternalStorageDirectory() + “/res.zip”
public static String readDataFile(String file) throws Exception { //截取路径的文件名 res String fileName = file.substring(file.length() - 9, file.length() - 4); ZipFile zf = new ZipFile(file); InputStream in = new BufferedInputStream(new FileInputStream(file)); ZipInputStream zin = new ZipInputStream(in); ZipEntry ze; while ((ze = zin.getNextEntry()) != null) { if (ze.isDirectory()) { //Do nothing } else { if (ze.getName().equals(fileName + "/txt/data.json")) { BufferedReader br = new BufferedReader( new InputStreamReader(zf.getInputStream(ze))); String line; while ((line = br.readLine()) != null) { return line; } br.close(); } } } zin.closeEntry(); return ""; }上面方法比较简单没什么好说的,大家理解就行,有点需要注意的就是在判断是否是想要读取的文件的时候,这里的路径是以zip的压缩目录为根目录做比较。也就是if (ze.getName().equals(fileName + "/txt/data.json")) 这句话中的fileName 当前值为res。最后返回读取的内容String就完事了。
图片和xml文件的读取都差不多,下面直接贴出代码了。
图片:
zip包目录结构:res/pic/haha.png
文件sd卡路径:android.os.Environment.getExternalStorageDirectory() + “/res.zip”
public static Bitmap readGuidePic(String file, String ResId) throws Exception { String fileName = file.substring(file.length() - 9, file.length() - 4); ZipFile zf = new ZipFile(file); InputStream in = new BufferedInputStream(new FileInputStream(file)); ZipInputStream zin = new ZipInputStream(in); ZipEntry ze; while ((ze = zin.getNextEntry()) != null) { if (ze.isDirectory()) { //Do nothing } else { Log.i("tag", "file - " + ze.getName() + " : " + ze.getSize() + " bytes"); if (ze.getName().equals(fileName + "/pic/haha.png")) { InputStream is = zf.getInputStream(ze); Bitmap bitmap = BitmapFactory.decodeStream(is); return bitmap; } } } zin.closeEntry(); return null; }xml文件:
zip包目录结构:res/xml/app.xml
文件sd卡路径:android.os.Environment.getExternalStorageDirectory() + “/res.zip”
public static InputStream readAppFile(String file) throws IOException { String fileName = file.substring(file.length() - 9, file.length() - 4); ZipFile zf = new ZipFile(file); InputStream in = new BufferedInputStream(new FileInputStream(file)); ZipInputStream zin = new ZipInputStream(in); ZipEntry ze; while ((ze = zin.getNextEntry()) != null) { if (ze.isDirectory()) { //Do nothing } else { if (ze.getName().equals(fileName + "/xml/app.xml")) { InputStream inputStream = zf.getInputStream(ze); return inputStream; } } } zin.closeEntry(); return null; }以上这篇Android 不解压直接读取zip包的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
PHP操作ZIP压缩包文件的基本方法大家应该都知道怎么做(如不了解可在本文底部学习PHP操作ZIP的基本方法),那么如何在不解压的情况下直接读取压缩包中的文件呢
整理文档,搜刮出一个Java无需解压直接读取Zip文件和文件内容的代码,稍微整理精简一下做下分享。packagetest;importjava.io.Buffe
项目涉及文档处理,用户上传的包括zip和rar压缩包,需要先将压缩包解压后再作处理。对于zip压缩包,由于php自带zip扩展,可以直接解压。解压zip压缩包:
1、下载zip安装包点击此处下载MySQLserver8.0.22压缩包下载后直接解压即可2、解压,并配置环境变量2.1解压zip包到安装目录,我的解压在了D:
手机怎么解压zip文件手机解压文件方法手机怎么解压zip文件手机解压文件方法 2、启动解压软件ZArchiver后找到需要解压的zip文件; 3、选择解压的