NSOutputStream-保存网络资源到本地

_filePath = [[NetworkManager sharedInstance] pathForTemporaryFileWithPrefix:@"Get"];

_fileStream = [NSOutputStream outputStreamToFileAtPath:self.filePath append:NO];

[_fileStream open];

 
 
2.进行网络请求,并返回网络的数据。
 
通过输出流对象,将数据写入到指定的文件中。
 
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data{

NSInteger       dataLength;

const uint8_t * dataBytes;

NSInteger       bytesWritten;

NSInteger       bytesWrittenSoFar;

// 接收到的数据长度

dataLength = [data length];

dataBytes  = [data bytes];

bytesWrittenSoFar = 0;

do {

bytesWritten = [self.fileStream write:&dataBytes[bytesWrittenSoFar]maxLength:dataLength - bytesWrittenSoFar];

assert(bytesWritten != 0);

if (bytesWritten == -1) {

break;

} else {

bytesWrittenSoFar += bytesWritten;

}

} while (bytesWrittenSoFar != dataLength);

}

NSInputStream和NSMutableURLRequest-实现保存文件到服务器

1.准备工作,将需要的类进行声明定义。
*.h 文件

NSURLConnection* _aSynConnection;

NSInputStream *_inputStreamForFile;

NSString *_localFilePath;

 

@property (nonatomic,retain) NSURLConnection* aSynConnection;

@property (nonatomic,retain) NSInputStream *inputStreamForFile;

@property (nonatomic,retain) NSString *localFilePath;

 
*.m 文件

@synthesize inputStreamForFile=_inputStreamForFile;

@synthesize localFilePath=_localFilePath;

@synthesize aSynConnection=_aSynConnection;

 
2.进行请求
 

- (void)btnClickAction:(id)sender{

// 初始化目标地址的URL(发送到哪里)

NSURL *serverURL;

NSString *strURL=@"http://www.xxx.com/fileName.png";// 这里用图片为例

strURL = [strURL stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding];

serverURL=[NSURL URLWithString:strURL];

// 初始化本地文件路径,并与NSInputStream链接

self.localFilePath=@"本地的图片路径";

self.inputStreamForFile = [NSInputStream inputStreamWithFileAtPath:self.localFilePath];

// 上传大小

NSNumber *contentLength;

contentLength = (NSNumber *) [[[NSFileManager defaultManager]attributesOfItemAtPath:self.localFilePath error:NULL] objectForKey:NSFileSize];

NSMutableURLRequest *request;

request = [NSMutableURLRequest requestWithURL:serverURL];

[request setHTTPMethod:@"PUT"];

[request setHTTPBodyStream:self.inputStreamForFile];

[request setValue:@"image/png" forHTTPHeaderField:@"Content-Type"];

[request setValue:[contentLength description] forHTTPHeaderField:@"Content-Length"];

// 请求

self.aSynConnection = [NSURLConnection connectionWithRequest:requestdelegate:self];

}

 
3.接受回调函数的状态,判断是否上传成功。

// 收到响应时,会触发

- (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse*)aResponse{

NSLog(@"请求成功!");

returnInfoData=[[NSMutableData alloc]init];

totalSize= [aResponse expectedContentLength];

NSHTTPURLResponse * httpResponse;

httpResponse = (NSHTTPURLResponse *)aResponse;

if ((httpResponse.statusCode / 100) != 2) {

NSLog(@"保存失败");

} else {

NSLog(@"保存成功");

}

}

NSOutputStream\NSInputStream的更多相关文章

  1. NSStream

    NSStream 流是位数据通过通信路径的连续传送序列.它是单向的,从一个应用程序的角度,流可以是输入流(读操作流)或者输出流(写操作流),除了基于文件的流之外,其余的都是non-seekable的. ...

  2. ios开发网络学习五:输出流以及文件上传

    一:输出流 #import "ViewController.h" @interface ViewController ()<NSURLConnectionDataDelega ...

  3. iOS开发——网络篇——文件下载(NSMutableData、NSFileHandle、NSOutputStream)和上传、压缩和解压(三方框架ZipArchive),请求头和请求体格式,断点续传Range

    一.小文件下载 NSURL *url = [NSURL URLWithString:@"http://120.25.226.186:32812/resources/images/minion ...

  4. Cocoa Touch(二):数据存储CoreData, NSKeyArchiver, NSOutputStream, NSUserDefaults

    应用程序离不开数据的永久存储,有两种方式实现存储:数据库和文本文件. 作为存储管理器,最基本的功能就是增删改查了. CoreData 1.插入 AppDelegate *app = [[UIAppli ...

  5. iOS开发系列-NSOutputStream

    NSOutputStream 创建一个NSOutputStream实例 - (nullable instancetype)initToFileAtPath:(NSString *)path appen ...

  6. 【原】AFNetworking源码阅读(五)

    [原]AFNetworking源码阅读(五) 本文转载请注明出处 —— polobymulberry-博客园 1. 前言 上一篇中提及到了Multipart Request的构建方法- [AFHTTP ...

  7. AFNetworking 3.0 源码解读 总结(干货)(下)

    承接上一篇AFNetworking 3.0 源码解读 总结(干货)(上) 21.网络服务类型NSURLRequestNetworkServiceType 示例代码: typedef NS_ENUM(N ...

  8. AFNetworking 3.0 源码解读(三)之 AFURLRequestSerialization

    这篇就讲到了跟请求相关的类了 关于AFNetworking 3.0 源码解读 的文章篇幅都会很长,因为不仅仅要把代码进行详细的的解释,还会大概讲解和代码相关的知识点. 上半篇: URI编码的知识 关于 ...

  9. iOS---后台运行机制详解

    一.iOS的“伪后台”程序 首先,先了解一下iOS 中所谓的「后台进程」到底是怎么回事吧? Let me be as clear as I can be: the iOS multitasking b ...

随机推荐

  1. Android 环境下编译FFmpeg

    Android 环境下编译FFmpeg 开发环境:Ubuntu 12.04.2 LTS , android-sdk-linux, android-ndk-r8e 一 .X264 编译 1.    X2 ...

  2. OD: Kernel Vulnerabilities Analyze

    内核漏洞大多出没于 ring3 到 ring0 的交互中.从 ring3 进入 ring0 的通道,以及操作系统提供的 API 都有可能存在漏洞.例如:驱动程序中 IoControl 的处理函数,SS ...

  3. 手动导出Excel及Excel导出原理探究

    前言:不知道大家有没碰到过,官方大型网站(例如中国移动)上很多地方查询列表是不提供数据导出的,而且界面上的筛选也无法满足我们的需求. 这时候我就想,如果能导出成Excel并借助自带的数据筛选方便多了. ...

  4. C#异常处理表、类、SQL

    表SQL /****** Object: Table [dbo].[IError] Script Date: 09/05/2012 17:00:41 ******/ SET ANSI_NULLS ON ...

  5. 关于Core Data的一些整理(三)

    关于Core Data的一些整理(三) 关于Core Data Stack的四种类与它们的关系如下: NSManagedObjectModel NSPersistentStore NSPersiste ...

  6. cocoapods安装失败

    ERROR:  While executing gem ... (Gem::FilePermissionError) You don't have write permissions for the ...

  7. CSS 布局Float 【2】

    1.页面标准文档流.浮动层.float属性 1.1 文档流 HTML页面的标准文档流(默认布局)是:从上到下,从左到右,遇块(块级元素)换行. 1.2 浮动层 浮动层:给元素的float属性赋值后,就 ...

  8. 【USACO 1.4.2】时钟

    [题目描述] 考虑将如此安排在一个 3 x 3 行列中的九个时钟: |-------| |-------| |-------| | | | | | | | |---O | |---O | | O | ...

  9. 如何使用LoadRunner监控Windows

    1.监视连接前的准备工作   1)进入被监视windows系统,开启以下二个服务Remote Procedure Call(RPC) 和Remote Registry Service (开始—)运行 ...

  10. Navicat 选择语句

    1.进入数据库后,点击Query 2.点击new query 3.左边提供界面的筛选条件,如果不清楚sql语句,可直接在上面操作 4.右边可自己编写sql语句 5.写完语句后,点击Run,在resul ...