public class FileNameUtil extends Object
| Constructor and Description |
|---|
FileNameUtil(Map<String,String> uncompressSuffix,
String defaultExtension)
sets up the utility with a map of known compressed to
uncompressed suffix mappings and the default extension of the
format.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getCompressedFilename(String fileName)
Deprecated.
|
String |
getCompressedFileName(String fileName)
Maps the given file name to the name that the file should have after
compression.
|
String |
getUncompressedFilename(String fileName)
Deprecated.
|
String |
getUncompressedFileName(String fileName)
Maps the given name of a compressed file to the name that the
file should have after uncompression.
|
boolean |
isCompressedFilename(String fileName)
Deprecated.
|
boolean |
isCompressedFileName(String fileName)
Detects common format suffixes in the given file name.
|
public FileNameUtil(Map<String,String> uncompressSuffix, String defaultExtension)
uncompressSuffix - Map from common file name suffixes of
compressed files to the corresponding suffixes of uncompressed
files. For example: from ".tgz" to ".tar". This map also
contains format-specific suffixes like ".gz" and "-z". These
suffixes are mapped to the empty string, as they should simply
be removed from the file name when the file is uncompressed.defaultExtension - the format's default extension like ".gz"@Deprecated public String getCompressedFilename(String fileName)
getCompressedFileName(String).fileName - name of a filepublic String getCompressedFileName(String fileName)
fileName - name of a file@Deprecated public String getUncompressedFilename(String fileName)
getUncompressedFileName(String).fileName - name of a filepublic String getUncompressedFileName(String fileName)
fileName - name of a file@Deprecated public boolean isCompressedFilename(String fileName)
isCompressedFileName(String).fileName - name of a filetrue if the file name has a common format suffix,
false otherwisepublic boolean isCompressedFileName(String fileName)
fileName - name of a filetrue if the file name has a common format suffix,
false otherwiseCopyright © 2002–2025. All rights reserved.