Here you can find the source of getEntryName(ZipEntry entry)
public static String getEntryName(ZipEntry entry) throws UnsupportedEncodingException
//package com.java2s; import java.io.UnsupportedEncodingException; import java.util.zip.ZipEntry; public class Main { public static String getEntryName(ZipEntry entry) throws UnsupportedEncodingException { return new String(entry.getName().getBytes("GB2312"), "8859_1"); }/*from ww w . j a va 2s . c o m*/ }