任何人都可以在objective-c(用于iPhone开发)中为我提供有关压缩和解压缩内存中字符串的教程/文档。
我正在研究Objective-Zip,但似乎只能将压缩数据写入文件。
答案 0 :(得分:1)
举个例子
@interface NSString (Gzip)
- (NSData *)compress;
@end
@implementation NSString (Gzip)
- (NSData *)compress
{
size_t len = [self length];
size_t bufLen = (len + 12) * 1.001;
u_char *buf = (u_char *)malloc(bufLen);
if (buf == NULL) {
NSLog(@"malloc error");
return nil;
}
int err = compress(buf, &bufLen, (u_char *)[[self dataUsingEncoding:NSUTF8StringEncoding] bytes], len);
if (err != Z_OK) {
NSLog(@"compress error");
free(buf);
return nil;
}
NSData *rtn = [[[NSData alloc] initWithBytes:buf length:bufLen] autorelease];
free(buf);
return rtn;
}
@end