Пример #1
0
 /**
  * Maps the given name of a gzip-compressed file to the name that the file should have after
  * uncompression. Commonly used file type specific suffixes like ".tgz" or ".svgz" are
  * automatically detected and correctly mapped. For example the name "package.tgz" is mapped to
  * "package.tar". And any filenames with the generic ".gz" suffix (or any other generic gzip
  * suffix) is mapped to a name without that suffix. If no gzip suffix is detected, then the
  * filename is returned unmapped.
  *
  * @param filename name of a file
  * @return name of the corresponding uncompressed file
  */
 public static String getUncompressedFilename(final String filename) {
   return fileNameUtil.getUncompressedFilename(filename);
 }