關於數據流NSOutputStream

#import "URL.h"

@interface URL ()

//文件輸出流
@property(nonatomic,strong) NSOutputStream * fileStream;

@end

@implementation URL

- (void)viewDidLoad {
[super viewDidLoad];

self.webView = [[UIWebView alloc]initWithFrame:self.view.bounds];

[self.view addSubview:self.webView];

[self outputStream];

}

//輸出流
-(void)outputStream{

//創建統一資源定位符
NSURL *url = [NSURL URLWithString:@"http://localhost/001--NSURLConnection.wmv.pbb"];

//創建網絡請求
NSURLRequest *request = [NSURLRequest requestWithURL:url];

NSURLConnection *connection = [[NSURLConnection alloc]initWithRequest:request delegate:self startImmediately:YES];

}

//接收頭信息
- (void)connection:(NSURLConnection )connection didReceiveResponse:(NSURLResponse )response{

NSString *path = [@"/Users/xiaojie/Desktop/xiaoxiao" stringByAppendingPathComponent:response.suggestedFilename];

[[NSFileManager defaultManager]removeItemAtPath:path error:NULL];

self.fileStream = [[NSOutputStream alloc]initToFileAtPath:path append:YES];

[self.fileStream open];

}

//不斷接收數據
- (void)connection:(NSURLConnection )connection didReceiveData:(NSData )data{

[self.fileStream write:data.bytes maxLength:data.length];

}

//數據傳輸完畢
- (void)connectionDidFinishLoading:(NSURLConnection *)connection{

[self.fileStream close];

}
@end

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章