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

iOS 网络输入流提供请求体(适用于大容量内容)

时间:2017-05-29 16:36:59      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:request   code   网络   article   mod   input   nsurl   http请求   track   

iOS 发送http请求时,须要发送图片或者视频等大容量数据内容,使用输入流是最佳的选择

 NSURL *url = [NSURL URLWithString:@""];
    NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];
    NSInputStream *insetream = [NSInputStream inputStreamWithFileAtPath:@"路径"];//加入文件路径
    [request setHTTPBodyStream:insetream];
    [request setHTTPMethod:@"POST"];

用上面来构造请求。

iOS 网络输入流提供请求体(适用于大容量内容)

标签:request   code   网络   article   mod   input   nsurl   http请求   track   

原文地址:http://www.cnblogs.com/jzdwajue/p/6918136.html

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