码迷,mamicode.com
首页 > 移动开发 > 详细

iOS核心笔记——网络编程-文件MIMEType

时间:2017-02-05 15:23:12      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:nullable   lan   com   error   cfs   需要   pre   sts   oct   

1、获取文件的MIMEType:

1-1、方式一:查看对照表

查看文件的MIMEType


1-2、方式二:发送网络请求-从响应头中获取
1.    [[[NSURLSession sharedSession] dataTaskWithURL:[NSURL fileURLWithPath:@"/Users/xiaomage/Desktop/Snip20161126_238.png"] completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) {
2.
3. //响应头信息:对服务器端已经对响应本身的描述
4. NSLog(@"%@",response.MIMEType);
5. }]resume];

1-3、方式三:C语言API
1.- (NSString *)mimeTypeForFileAtPath:(NSString *)path
2.{
3. if (![[[NSFileManager alloc] init] fileExistsAtPath:path]) {
4. return nil;
5. }
6.
7. CFStringRef UTI = UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, (__bridge CFStringRef)[path pathExtension], NULL);
8. CFStringRef MIMEType = UTTypeCopyPreferredTagWithClass (UTI, kUTTagClassMIMEType);
9. CFRelease(UTI);
10. if (!MIMEType) {
11. return @"application/octet-stream";
12. }
13. return (__bridge NSString *)(MIMEType);
14.}

?重要:C语言API方法需要依赖于【<MobileCoreServices/MobileCoreServices.h>】头文件。


1-4、方式四:使用通用型
1.// 通用的二进制数据类型
2.application/octet-stream

2、部分文件MIMEType:

技术分享


iOS核心笔记——网络编程-文件MIMEType

标签:nullable   lan   com   error   cfs   需要   pre   sts   oct   

原文地址:http://www.cnblogs.com/leilifengixng/p/6367518.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!