是否在Objective C中构建了格式化文件大小的方法?或者你可以建议我一些库/源代码/等?
我的意思是你有一些文件大小应该根据给定的大小显示:
提前致谢
答案 0 :(得分:9)
这个问题非常优雅地解决了这个问题:
[NSByteCountFormatter stringFromByteCount:countStyle:]
使用示例:
long long fileSize = 14378165;
NSString *displayFileSize = [NSByteCountFormatter stringFromByteCount:fileSize
countStyle:NSByteCountFormatterCountStyleFile];
NSLog(@"Display file size: %@", displayFileSize);
fileSize = 50291;
displayFileSize = [NSByteCountFormatter stringFromByteCount:fileSize
countStyle:NSByteCountFormatterCountStyleFile];
NSLog(@"Display file size: %@", displayFileSize);
日志输出:
显示文件大小:14.4 MB
显示文件大小:50 KB
输出将根据设备的区域设置正确格式化。
自iOS 6.0和OS X 10.8开始提供。
答案 1 :(得分:0)
获取文件大小,然后计算它是以字节为单位还是以kb或mb为单位
NSDictionary *fileAttributes = [[NSFileManager defaultManager] attributesOfItemAtPath:URL error:&attributesError];
NSNumber *fileSizeNumber = [fileAttributes objectForKey:NSFileSize];
long long fileSize = [fileSizeNumber longLongValue];
Then conversion table
1 byte = 8 bits
1 KiB = 1,024 bytes
1 MiB = 1024 kb
1 GiB = 1024 mb
答案 2 :(得分:0)
这是我发现的一些代码。不是非常有效,并且可能更好地附加到NSNumberFormatter的类别而不是NSNumber,等等,但它似乎工作
@interface NSNumber (FormatKibi)
- (NSString *)formatKibi;
@end
@implementation NSNumber (FormatKibi)
- (NSString *)formatKibi {
double value = [self doubleValue];
static const char suffixes[] = { 0, 'k', 'm', 'g', 't' };
int suffix = 0;
if (value <= 10000)
return [[NSString stringWithFormat:@"%5f", value]
substringToIndex:5];
while (value > 9999) {
value /= 1024.0;
++suffix;
if (suffix >= sizeof(suffixes)) return @"!!!!!";
}
return [[[NSString stringWithFormat:@"%4f", value]
substringToIndex:4]
stringByAppendingFormat:@"%c", suffixes[suffix]];
}
@end
我用它测试了它:
int main(int argc, char *argv[]) {
for (int i = 1; i != argc; ++i) {
NSNumber *n = [NSNumber numberWithInteger:
[[NSString stringWithUTF8String:argv[i]]
integerValue]];
printf("%s ", [[n formatKibi] UTF8String]);
}
printf("\n");
return 0;
}
然后:
$ ./sizeformat 1 12 123 1234 12345 123456 1234567 12345678 1234567890 123456789012 12345678901234 1234567890123456 123456789012345678
1.000 12.00 123.0 1234. 12.0k 120.k 1205k 11.7m 1177m 114.g 11.2t 1122t !!!!!