Java ZipEntry Read getZipEntryAsString(InputStream is)

Here you can find the source of getZipEntryAsString(InputStream is)

Description

get Zip Entry As String

License

Open Source License

Declaration

public static String getZipEntryAsString(InputStream is) throws IOException 

Method Source Code

//package com.java2s;
/* $RCSfile$/*  w w  w  . j  a va 2s . com*/
 * $Author$
 * $Date$
 * $Revision$
 *
 * Copyright (C) 2006  The Jmol Development Team
 *
 * Contact: jmol-developers@lists.sf.net
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 *  02110-1301, USA.
 */

import java.io.IOException;
import java.io.InputStream;

public class Main {
    public static String getZipEntryAsString(InputStream is) throws IOException {
        StringBuffer sb = new StringBuffer();
        byte[] buf = new byte[1024];
        int len;
        while (is.available() >= 1 && (len = is.read(buf)) > 0)
            sb.append(new String(buf, 0, len));
        return sb.toString();
    }
}

Related

  1. getZipEntry(String zipFileLoc)
  2. getZipEntry(ZipFile jarFile, String path)
  3. getZipEntry(ZipFile zip, final String name)
  4. getZipEntry(ZipFile zip, String name)
  5. getZipEntryAsString(File archive, String name)
  6. getZipEntryByteContent(ZipEntry ze, ZipFile zip)
  7. getZipEntryContent(final File zip, final String entry)
  8. getZipEntryFileName(final ZipEntry zipEntry)
  9. getZipEntryName(int pathOffset, String absolutePath)