Lines Matching refs:entry
217 ZipEntry entry = entries.nextElement();
218 if (entry == null) {
221 String filePath = destDir + File.separator + entry.getName();
226 if (entry.isDirectory()) {
231 bis = new BufferedInputStream(zipFile.getInputStream(entry));
395 ZipEntry entry = null;
401 while ((entry = zin.getNextEntry()) != null) {
402 if (entry.getName().toLowerCase().equals(jsonName)) {
403 inputStream = zipFile.getInputStream(entry);
439 final ZipEntry entry = entries.nextElement();
440 if (entry.getName().contains(RESOURCE_PATH)) {
441 String filePath = entry.getName();
462 ZipEntry entry = zipFile.getEntry(fileName);
463 if (entry == null) {
470 fileInputStream = zipFile.getInputStream(entry);
537 ZipEntry entry = zipInputStream.getNextEntry();
538 while (entry != null) {
539 String filePath = destDirPath + File.separator + entry.getName();
544 if (!entry.isDirectory()) {
551 entry = zipInputStream.getNextEntry();