Possibile duplicato:
come si effettua la compressione di un file e si conserva il file .gz?
Decomprimo il file usando il seguente comando:
gunzip -f test.TGZ
Questo mi ha dato il file test.tar ma ho perso il file test.TGZ. Esiste un modo per conservare il file originale?
EDIT & Update: sto chiamando i comandi decompress tramite un programma Java. Il file TGZ contiene almeno 1 file di immagine, 1 file di testo e 1 file video.
Metodo Java: esegui il comando
private static InputStream executeCommand(String command, File workingDir)
throws Exception {
Runtime runtime = Runtime.getRuntime();
Process process = runtime.exec(command, null, workingDir);
int exitValue = -1;
try {
exitValue = process.waitFor();
} catch (InterruptedException ignore) {
}
if (exitValue != 0) {
InputStream errStream = process.getErrorStream();
String errMessage = null;
if (errStream.available() > 0) {
byte[] errOutput = new byte[errStream.available()];
errStream.read(errOutput);
errMessage = new String(errOutput);
}
throw new Exception(
"Error in ExtractTGZFileTest.executeCommand(command=\""
+ command + "\") - " + errMessage);
}
return process.getInputStream();
}
public static void main(String[] args) {
try {
if (args.length == 2 && args[0].equalsIgnoreCase("tgz")) {
String archiveName = args[1];
String tarFilnme = archiveName.substring(0, archiveName
.length()
- ".tgz".length())
+ ".tar";
String gzipCommand = "gzip -c -d " + archiveName + " > "
+ tarFilnme;
InputStream is = ExtractTGZFileTest.executeCommand(gzipCommand,
null);
} else if (args.length == 2 && args[0].equalsIgnoreCase("tgz1")) {
String archiveName = args[1];
String gzipCommand = "gzip --decompress --name --verbose "
+ archiveName;
InputStream is = ExtractTGZFileTest.executeCommand(gzipCommand,
null);
} else {
System.err.println("Usage: command <file1> ");
System.exit(1);
}
System.out.println("DONE");
} catch (Exception ex) {
ex.printStackTrace();
System.exit(2);
}
}
Soluzione: attualmente, copio il file TGZ in posizione temporanea e lavoro con quel file.