Android Zip Entry Get getEntryName(ZipEntry entry)

Here you can find the source of getEntryName(ZipEntry entry)

Description

get Entry Name

Declaration

public static String getEntryName(ZipEntry entry)
            throws UnsupportedEncodingException 

Method Source Code

//package com.java2s;

import java.io.UnsupportedEncodingException;

import java.util.zip.ZipEntry;

public class Main {
    private static final String ENCODE_GB2312 = "GB2312";
    private static final String ENCODE_8859_1 = "8859_1";

    public static String getEntryName(ZipEntry entry)
            throws UnsupportedEncodingException {
        return new String(entry.getName().getBytes(ENCODE_GB2312),
                ENCODE_8859_1);//from  w  w  w. ja v  a  2  s. c  o  m
    }
}

Related

  1. getEntryName(ZipEntry entry)
  2. getEntryName(ZipEntry entry)
  3. getEntryName(ZipEntry entry)
  4. getEntryName(ZipEntry entry)
  5. getEntryName(ZipEntry entry)
  6. getEntryName(ZipEntry entry)
  7. GetFileList( String zipFileString, boolean bContainFolder, boolean bContainFile)
  8. GetFileList(String zipFileString, boolean bContainFolder, boolean bContainFile)
  9. GetFileList(String zipFileString, boolean bContainFolder, boolean bContainFile)