get Zip Entry Comment - Java File Path IO

Java examples for File Path IO:Zip File

Description

get Zip Entry Comment

Demo 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 getEntryComment(ZipEntry entry)
            throws UnsupportedEncodingException {
        return new String(entry.getComment().getBytes(ENCODE_GB2312),
                ENCODE_8859_1);/*from w ww  . ja v  a  2 s  .  c o  m*/
    }
}

Related Tutorials