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