Here you can find the source of isIgnore(final ZipEntry ze)
public static boolean isIgnore(final ZipEntry ze)
//package com.java2s; import java.util.zip.ZipEntry; public class Main { public static boolean isIgnore(final ZipEntry ze) { return ze == null || (ze.getName() != null && ze.getName().startsWith( "__MACOSX")); }//from w w w .j a va2 s . c om }