1,HTTP常見的方法
GET 獲取指定資源
POST 2M 向指定資源提交數據進行處理請求,在RESTful風格中用於新增資源 HEAD 獲取指定資源頭部信息
PUT 替換指定資源(不支持浏覽器操作)
DELETE 刪除指定資源
2,配置服務器的put請求方式:
代碼如下:
1>
n 打開終端
p cd /etc/apache2
p sudo vim httpd.conf
n 在vim中輸入
p /httpd-dav.conf
• 查找httpd-dav.conf
p 按0將光標移動至行首 p 按x將行首的#刪除
p 輸入:wq,保存並退出
2>
在終端繼續輸入
cd /etc/apache2/extra
sudo vim httpd-dav.conf
在vim中將右圖中第一處標紅位置 的Digest修改為Basic
輸入:wq,保存並退出
提示:
修改的是用戶授權的方式
第二處標紅位置是保存用戶密碼 的文件(/user/user.passwd)
第三處標紅位置是能夠使 用PUT請求的用戶名(admin)
4>
在終端輸入 p cd /usr
sudo htpasswd -c /usr/user.passwd admin
ls-l
sudo chgrp www /usr/user.passwd
ls-l
5>
建立var文件夾,保存DavLockDB相關文件 n sudo mkdir -p /usr/var
sudo chown -R www:www /usr/var
建立上傳文件夾:uploads
sudo mkdir -p /usr/uploads
sudo chown -R www:www /usr/uploads
重新啟動Apache
sudo apachectl -k restart
6>當看到這個時就表示配置正確
修改後用ls -l查看的示意圖如下
如果能看到這三個就表示配置正確
uploads
user.passwd
var
實例:
代碼如下:
#import "KUViewController.h"
#import "KUProgress.h"
@interfaceKUViewController ()<NSURLSessionTaskDelegate>
//下載進度的類,繼承UIview
@property (weak, nonatomic) IBOutlet KUProgress *progressView;
@end
@implementation KUViewController
- (void)viewDidLoad
{
[superviewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
[self putFile];
}
/**
* 用PUT方法上傳文件,不經過浏覽器傳遞
*/
-(void)putFile
{
//1,url(協議+主機名+路徑+保存到服務器的文件名)
// post:url (協議+主機名+上傳的服務器的程序)
NSString *urlStr = @"http://localhosthttp://img.warting.com/046.Post提交用戶隱私數據&MD5加密.mp4";
//1.1編碼格式
urlStr = [urlStr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSURL *url = [NSURL URLWithString:urlStr];
//2,request 請求(默認是get)
NSMutableURLRequest *request = [NSMutableURLRequestrequestWithURL:url];
//1>httpMethod
request.HTTPMethod = @"PUT";
//2>網絡請求授權
/**
BASE64目前在網絡上最流行的一種編碼方式,可以將二進制的數據轉換成字符串,對方接受到之後,可以再講字符串轉換成二進制文件
BASE64可以編碼,也可以解碼
授權格式:
(1)授權字符串格式:用戶名:口令
(2)授權模式:Basic Base64編碼的授權字符串
(3)位HTTPHEADERField的Authorization賦值
*/
NSString *authStr = @"admin:admin";
//將字符串轉換成 Base64
authStr = [self authBase64:authStr];
//轉換成第二部的
NSString *authBase64 = [NSString stringWithFormat:@"Basic %@",authStr];
//轉換成第三部
[request setValue:authBase64 forHTTPHeaderField:@"Authorization"];
//3,session
//1>.創建會話機制
NSURLSessionConfiguration *config = [NSURLSessionConfigurationdefaultSessionConfiguration];
NSURLSession *session = [NSURLSessionsessionWithConfiguration:config delegate:selfdelegateQueue:[[NSOperationQueuealloc] init]];
//2> 上傳任務
//上傳的文件的路徑
NSURL *fileUrl = [[NSBundle mainBundle] URLForResource:@"01.Post提交用戶隱私數據&MD5加密.mp4" withExtension:nil];
[[session uploadTaskWithRequest:request fromFile:fileUrl] resume];
// 這是不用下載進度條的方法。
// NSURLSessionUploadTask *task = [session uploadTaskWithRequest:request fromFile:fileUrl completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
//
// //把二進制數據轉換成字符串
// NSString *str = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
// NSLog(@"str = %@",str);
// }];
//
}
#pragma mark -- 代理方法
-(void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didSendBodyData:(int64_t)bytesSent totalBytesSent:(int64_t)totalBytesSent totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend
{
CGFloat value = (CGFloat)totalBytesSent / totalBytesExpectedToSend;
// [NSThread sleepForTimeInterval:0.2];
[[NSOperationQueuemainQueue] addOperationWithBlock:^{
self.progressView.progress = value;
}];
NSLog(@"下載進度;value = %.03lf",value);
}
-(void)URLSession:(NSURLSession *)session didBecomeInvalidWithError:(NSError *)error
{
NSLog(@"上傳失敗");
}
//轉換成Base64編碼授權字符串
-(NSString *)authBase64:(NSString *)authStr
{
//將字符串轉換成二進制數局
NSData *data = [authStr dataUsingEncoding:NSUTF8StringEncoding];
return [data base64EncodedStringWithOptions:0];
}