zoukankan      html  css  js  c++  java
  • iOS 下载图片 -当后台返回的数据是文件流而不是图片url

     NSString *urlStr = [NSString stringWithFormat:@"%@uploadFileRest/downFile",[AFAppDotNetAPIClient getUrl]];

                        NSURL *url = [NSURL URLWithString:urlStr];

                        NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url];

                        request.HTTPMethod = @"POST";

                        NSString *post = [NSString stringWithFormat:@"contentType=%@&fileName=%@&filePath=%@",model.CONTENT_TYPE,model.FILE_NAME,model.FILE_PATH];

                        request.HTTPBody = [post dataUsingEncoding:NSUTF8StringEncoding];

                        

                        NSURLSession *session = [NSURLSession sharedSession];

                        

                        // 可以不必创建请求直接用url进行获取,但是只能应用于get请求

                        

                        NSURLSessionTask *task = [session dataTaskWithRequest:request completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {

                            if (error) {

                                UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"提示" message:error.localizedDescription preferredStyle: UIAlertControllerStyleAlert];

                                

                                UIAlertAction *okAction = [UIAlertAction actionWithTitle:@"确定" style:(UIAlertActionStyleDefault) handler:^(UIAlertAction *action) {

                                }];

                                [alert addAction:okAction];

                                //弹出提示框;

                                [self presentViewController:alert animated:true completion:nil];

                            }else

                            {

                                image1 = [UIImage imageWithData:data];

                                dispatch_async(dispatch_get_main_queue(), ^

                                {

                                    // 更UI

                                    UIImageView *imgView1 = [[UIImageView alloc]initWithFrame:CGRectMake(10, 10, 200, 200)];

                                    //  imgView.backgroundColor = [UIColor yellowColor];

                                    imgView1.image = image1;

                                    [self.view addSubview:imgView1];

                               });

                            }

                        }];

                        [task resume];

  • 相关阅读:
    [译] 第八天: Harp.JS
    [译] 第七天: GruntJS LiveReload
    [译] 第六天:在Java虚拟机上用Grails进行快速Web开发
    [译] 第五天: GruntJS
    [译] 第四天: PredictionIO
    [译] 第三天:Flask
    [译] 第二天:AngularJS
    Hbase搭建-基本操作
    Hbase写入原理-常用操作-过滤器
    Hbase基本命令和协处理器-rowkey设计原则-hive和hbase结合
  • 原文地址:https://www.cnblogs.com/amy54/p/5367788.html
Copyright © 2011-2022 走看看