zoukankan      html  css  js  c++  java
  • iOS通过http post上传图片 (转)

    转载自:http://www.cocoachina.com/bbs/read.php?tid=89985

    由于iOS无法通过html表单来上传图片,因此想要上传图片,必须实现http请求,而不能像其他语言那样通过html表单的post就能上传。

    上传图片的http post请求的格式是这样的:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    Content-type: multipart/form-data, boundary=AaB03x
     
    --AaB03x
    content-disposition: form-data; name="field1"
     
    Hello Boris!
    --AaB03x
    content-disposition: form-data; name="pic"; filename="boris.png"
    Content-Type: image/png
     
    ... contents of boris.png ...
    --AaB03x--




    第一行是指定了http post请求的编码方式为multipart/form-data(上传文件必须用这个)。
    boundary=AaB03x说明了AaB03x为分界线。比如 --AaB03x 就是一个分界线的意思

    content-disposition: form-data; name="field1"

    Hello Boris!

      这句话声明了请求中的一个字段的名称,如field1  以及字段的值,如Hello Boris!
    这里类似form表单中的<input name="field1" type="text" value="Hello Boris!"/>
    中间的空行是必须的。

    不同的字段之间用分界线分开,分界线需要单独一行,如 --AaB03x--

    分界线的下一行,是下一个字段

    content-disposition: form-data; name="pic"; filename="boris.png"
    Content-Type: image/png

     ... contents of boris.png ...
     --AaB03x--

    这里声明了变量pic,也就是我们要传的文件,上传文件的时候需要在后边指定file name:filename="boris.png"
    并且需要在下一行指定文件的格式:Content-Type: image/png


     ... contents of boris.png ...  这里是boris.png的二进制内容,如 <89504e47 0d0a1a0a 0000000d 49484452 000000b4 000000b4 08020000 00b2af91 65000020 00494441 5478012c dd79b724 6b7616f6 8c888c88 8c9c8733 55ddb1d5 6a0db486 06218401 ......

    在http post请求的结尾,需要有一个分界线,但是是前后都有--的:--AaB03x--

    以上的这些格式,是http的规范,每个空行,空格都是必须的。

    下边是iOS的实现代码:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    //分界线的标识符
            NSString *TWITTERFON_FORM_BOUNDARY = @"AaB03x";
            //根据url初始化request
            NSMutableURLRequest* request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:url]
                                                                   cachePolicy:NSURLRequestReloadIgnoringLocalCacheData
                                                               timeoutInterval:10];
            //分界线 --AaB03x
            NSString *MPboundary=[[NSString alloc]initWithFormat:@"--%@",TWITTERFON_FORM_BOUNDARY];
            //结束符 AaB03x--
            NSString *endMPboundary=[[NSString alloc]initWithFormat:@"%@--",MPboundary];
            //要上传的图片
            UIImage *image=[params objectForKey:@"pic"];
            //得到图片的data
            NSData* data = UIImagePNGRepresentation(image);
            //http body的字符串
            NSMutableString *body=[[NSMutableString alloc]init];
            //参数的集合的所有key的集合
            NSArray *keys= [params allKeys];
             
            //遍历keys
            for(int i=0;i<[keys count];i++)
            {
                //得到当前key
                NSString *key=[keys objectAtIndex:i];
                //如果key不是pic,说明value是字符类型,比如name:Boris
                if(![key isEqualToString:@"pic"])
                {
                    //添加分界线,换行
                    [body appendFormat:@"%@ ",MPboundary];
                    //添加字段名称,换2行
                    [body appendFormat:@"Content-Disposition: form-data; name="%@" ",key];
                    //添加字段的值
                    [body appendFormat:@"%@ ",[params objectForKey:key]];           
                }
            }
             
            ////添加分界线,换行
            [body appendFormat:@"%@ ",MPboundary];
            //声明pic字段,文件名为boris.png
            [body appendFormat:@"Content-Disposition: form-data; name="pic"; filename="boris.png" "];
            //声明上传文件的格式
            [body appendFormat:@"Content-Type: image/png "];
             
            //声明结束符:--AaB03x--
            NSString *end=[[NSString alloc]initWithFormat:@" %@",endMPboundary];
            //声明myRequestData,用来放入http body
            NSMutableData *myRequestData=[NSMutableData data];
            //将body字符串转化为UTF8格式的二进制
            [myRequestData appendData:[body dataUsingEncoding:NSUTF8StringEncoding]];
            //将image的data加入
            [myRequestData appendData:data];
            //加入结束符--AaB03x--
            [myRequestData appendData:[end dataUsingEncoding:NSUTF8StringEncoding]];
             
            //设置HTTPHeader中Content-Type的值
            NSString *content=[[NSString alloc]initWithFormat:@"multipart/form-data; boundary=%@",TWITTERFON_FORM_BOUNDARY];
            //设置HTTPHeader
            [request setValue:content forHTTPHeaderField:@"Content-Type"];
            //设置Content-Length
            [request setValue:[NSString stringWithFormat:@"%d", [myRequestData length]] forHTTPHeaderField:@"Content-Length"];
            //设置http body
            [request setHTTPBody:myRequestData];
            //http method
            [request setHTTPMethod:@"POST"]; 
             
            //建立连接,设置代理
            NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:request delegate:self];
             
            //设置接受response的data
            if (conn) {
                mResponseData = [[NSMutableData data] retain];
  • 相关阅读:
    回发保留前台添加的html
    关于NBear数据访问层IDData
    使用js把数字转化成会计格式
    二次注入
    .htaccess利用与Bypass方式总结
    HTTPoxy漏洞(CVE-2016-5385)
    JAVA并行程序基础一
    队列-数组实现
    Vuex
    稀疏数组
  • 原文地址:https://www.cnblogs.com/lingzeng/p/3933044.html
Copyright © 2011-2022 走看看