圧縮解除してファイルに書き込みたい .tgz ファイルがバンドルにいくつかあります。私はそれを機能させました-一種の。問題は、書き込まれたファイルの前に 512 バイトのがらくたデータが含まれていることですが、それ以外は、ファイルは正常に解凍されています。
(ソース: pici.se )
私はがらくたをしたくありません。常に 512 バイトである場合、それらを飛ばして他を書き込むのはもちろん簡単です。でも、いつもそうですか?そもそもなぜそれらのバイトがそこにあるのかわからない場合、そのようなことをするのは危険です。
gzFile f = gzopen ([[[NSBundle mainBundle] pathForResource:file ofType:@"tgz"] cStringUsingEncoding:NSASCIIStringEncoding], [@"rb" cStringUsingEncoding:NSASCIIStringEncoding]);
unsigned int length = 1024*1024;
void *buffer = malloc(length);
NSMutableData *data = [NSMutableData new];
while (true)
{
int read = gzread(f, buffer, length);
if (read > 0)
{
[data appendBytes:buffer length:read];
}
else if (read == 0)
break;
else if (read == -1)
{
throw [NSException exceptionWithName:@"Decompression failed" reason:@"read = -1" userInfo:nil];
}
else
{
throw [NSException exceptionWithName:@"Unexpected state from zlib" reason:@"read < -1" userInfo:nil];
}
}
int writeSucceeded = [data writeToFile:file automatically:YES];
free(buffer);
[data release];
if (!writeSucceeded)
throw [NSException exceptionWithName:@"Write failed" reason:@"writeSucceeded != true" userInfo:nil];