Android Utililty Methods Zip Entry Get

List of utility methods to do Zip Entry Get

Description

The list of methods to do Zip Entry Get are organized into topic(s).

Method

ArrayListgetEntriesNames(File zipFile)
get Entries Names
ArrayList<String> entryNames = new ArrayList<String>();
Enumeration<?> entries = getEntriesEnumeration(zipFile);
while (entries.hasMoreElements()) {
    ZipEntry entry = ((ZipEntry) entries.nextElement());
    entryNames.add(new String(getEntryName(entry).getBytes(
            HTTP.UTF_8), "8859_1"));
return entryNames;
...
ArrayListgetEntriesNames(File zipFile)
get Entries Names
ArrayList<String> entryNames = new ArrayList<String>();
Enumeration<?> entries = getEntriesEnumeration(zipFile);
while (entries.hasMoreElements()) {
    ZipEntry entry = ((ZipEntry) entries.nextElement());
    entryNames.add(new String(getEntryName(entry).getBytes(
            HTTP.UTF_8), "8859_1"));
return entryNames;
...
StringgetEntryComment(ZipEntry entry)
get Entry Comment
return new String(entry.getComment().getBytes("GB2312"), "8859_1");
StringgetEntryComment(ZipEntry entry)
get Entry Comment
return new String(entry.getComment().getBytes("GB2312"), "8859_1");
StringgetEntryComment(ZipEntry entry)
get Entry Comment
return new String(entry.getComment().getBytes("GB2312"), "8859_1");
StringgetEntryComment(ZipEntry entry)
get Entry Comment
String comment = new String(entry.getComment().getBytes("GB2312"),
        "8859_1");
return comment;
StringgetEntryComment(ZipEntry entry)
get Entry Comment
return new String(entry.getComment().getBytes(ENCODE_GB2312),
        ENCODE_8859_1);
StringgetEntryComment(ZipEntry entry)
get Entry Comment
return new String(entry.getComment().getBytes(HTTP.UTF_8), "8859_1");
StringgetEntryComment(ZipEntry entry)
get Entry Comment
return new String(entry.getComment().getBytes(HTTP.UTF_8), "8859_1");
StringgetEntryName(ZipEntry entry)
get Entry Name
return new String(entry.getName().getBytes("GB2312"), "8859_1");