Java ZipEntry Read getZipEntryName(int pathOffset, String absolutePath)

Here you can find the source of getZipEntryName(int pathOffset, String absolutePath)

Description

get Zip Entry Name

License

Apache License

Declaration

private static String getZipEntryName(int pathOffset, String absolutePath) 

Method Source Code


//package com.java2s;
/*/*  w ww .  jav  a 2s.  c om*/
 * Copyright 2014 Bernd Vogt and others.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.io.File;

public class Main {
    private static String getZipEntryName(int pathOffset, String absolutePath) {
        return absolutePath.substring(pathOffset).replace(File.separatorChar, '/');
    }
}

Related

  1. getZipEntryAsString(File archive, String name)
  2. getZipEntryAsString(InputStream is)
  3. getZipEntryByteContent(ZipEntry ze, ZipFile zip)
  4. getZipEntryContent(final File zip, final String entry)
  5. getZipEntryFileName(final ZipEntry zipEntry)
  6. getZipEntryNames(File zipFile)
  7. getZipEntryPath(File f, String archiveSourceDir)
  8. getZipEntryStream(File zipFile, String entryName)
  9. getZipEntryStreamOrThrow(File file, String filenamePart)