Example usage for org.apache.commons.compress.archivers ArchiveEntry toString

List of usage examples for org.apache.commons.compress.archivers ArchiveEntry toString

Introduction

In this page you can find the example usage for org.apache.commons.compress.archivers ArchiveEntry toString.

Prototype

public String toString() 

Source Link

Document

Returns a string representation of the object.

Usage

From source file:com.softenido.cafedark.io.virtual.VirtualFile.java

public VirtualFile(VirtualFile parent, ArchiveEntry child) {
    String[] parentItems = parent.splitPath();
    String[] items = Arrays.copyOf(parentItems, parentItems.length + 1);
    items[parentItems.length] = child.toString();
    this.fs = new ZipVirtualFileSystem(items, child);
}