All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.conqat.lib.commons.filesystem.ZipFile Maven / Gradle / Ivy

There is a newer version: 2024.7.2
Show newest version
/*
 * Copyright (c) CQSE GmbH
 *
 * 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.
 */

package org.conqat.lib.commons.filesystem;

import java.io.File;
import java.io.IOException;
import java.nio.channels.SeekableByteChannel;
import java.nio.charset.Charset;

/** Wrapper around Apache Compress ZIP file that exposes the filename */
public class ZipFile extends org.apache.commons.compress.archivers.zip.ZipFile {

	/** The filename */
	private final String name;

	public ZipFile(File f) throws IOException {
		super(f);
		this.name = f.getName();
	}

	public ZipFile(String name) throws IOException {
		super(name);
		this.name = name;
	}

	public ZipFile(String name, String encoding) throws IOException {
		super(name, encoding);
		this.name = name;
	}

	public ZipFile(File f, String encoding) throws IOException {
		super(f, encoding);
		this.name = f.getName();
	}

	public ZipFile(File f, String encoding, boolean useUnicodeExtraFields) throws IOException {
		super(f, encoding, useUnicodeExtraFields);
		this.name = f.getName();
	}

	public ZipFile(File f, Charset charset) throws IOException {
		this(f, charset.toString());
	}

	public ZipFile(SeekableByteChannel channel, String name) throws IOException {
		super(channel);
		this.name = name;
	}

	public ZipFile(SeekableByteChannel channel, String name, String encoding) throws IOException {
		super(channel, encoding);
		this.name = name;
	}

	public ZipFile(SeekableByteChannel channel, String name, String encoding, boolean useUnicodeExtraFields)
			throws IOException {
		super(channel, name, encoding, useUnicodeExtraFields);
		this.name = name;
	}

	public ZipFile(SeekableByteChannel channel, String name, String encoding, boolean useUnicodeExtraFields,
			boolean ignoreLocalFileHeader) throws IOException {
		super(channel, name, encoding, useUnicodeExtraFields, ignoreLocalFileHeader);
		this.name = name;
	}

	public String getName() {
		return name;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy