Android Zip Entry Get getEntryComment(ZipEntry entry)

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

Description

get Entry Comment

Declaration

public static String getEntryComment(ZipEntry entry)
        throws UnsupportedEncodingException 

Method Source Code

//package com.java2s;

import java.io.UnsupportedEncodingException;

import java.util.zip.ZipEntry;

public class Main {

    public static String getEntryComment(ZipEntry entry)
            throws UnsupportedEncodingException {
        return new String(entry.getComment().getBytes("GB2312"), "8859_1");
    }/* w  ww  .  j  a  v  a 2  s .  co  m*/
}

Related

  1. getEntriesNames(File zipFile)
  2. getEntriesNames(File zipFile)
  3. getEntriesNames(File zipFile)
  4. getEntryComment(ZipEntry entry)
  5. getEntryComment(ZipEntry entry)
  6. getEntryComment(ZipEntry entry)
  7. getEntryComment(ZipEntry entry)
  8. getEntryComment(ZipEntry entry)
  9. getEntryComment(ZipEntry entry)