问题描述:今天写代码时,发现源码和编译后的代码不一致,具体为一个变量entry在while循环外声明,未赋值,然后在while循环中进行赋值,对比源码和反编译后的class文件,反编译代码中entry变量被定义了三次,具体源码和反编译后的代码见下边,那么问题来了,根据反编译后的代码,entry对象会为空,运行时会报错,可实际运行却没问题,这是为什么呢?补充:如果将while循环,改成do..while()循环,反编译出来没问题。源代码:public static void unzip(byte[] zipBytes, String outputDir) throws IOException { try { BufferedOutputStream bos = null; // 根据byte数组,创建ZIP文件输入流 ZipInputStream zis = new ZipInputStream(new ByteArrayInputStream(zipBytes)); // zip文件条目,表示zip文件 ZipEntry entry; // 循环读取文件条目,只要不为空,就进行处理 try{ while ((entry = zis.getNextEntry()) != null) { int count; byte date[] = new byte[2048]; // 如果条目是文件目录,则继续执行 if (entry.isDirectory()) { continue; } else { try{ bos = new BufferedOutputStream(new FileOutputStream(getRealFileName(outputDir,entry.getName()))); while ((count = zis.read(date)) != -1) { bos.write(date, 0, count); } } finally { if (bos != null) { bos.flush(); bos.close(); } } } } }finally{ zis.close(); } } catch (Exception e) { e.printStackTrace(); } }反编译代码截图:
添加回答
举报
0/150
提交
取消