`
ttsiangogole
  • 浏览: 73388 次
文章分类
社区版块
存档分类
最新评论
阅读更多

    iOS开发中会经常用到文件上传下载的功能,这篇文件将介绍一下如何结合asp.net webservice实现文件上传下载。
首先,让我们看下文件下载。

这里我们下载cnblogs上的一个zip文件。使用NSURLRequest+NSURLConnection可以很方便的实现这个功能。在asp.net webservice中可以将文件的地址返回到iOS系统,iOS系统再通过这个url去请求下载该文件。这里为了简单起见,直接将url写道代码里面了。我们可以使用两种方式去下载文件。

1、同步下载文件:

<textarea readonly name="code" class="plain">        NSString *urlAsString = @"http://files.cnblogs.com/zhuqil/UIWebViewDemo.zip";
        NSURL    *url = [NSURL URLWithString:urlAsString];
        NSURLRequest *request = [NSURLRequest requestWithURL:url];
        NSError *error = nil;
        NSData   *data = [NSURLConnection sendSynchronousRequest:request
                                               returningResponse:nil
                                                           error:&amp;error];
        /* 下载的数据 */
        if (data != nil){
            NSLog(@"下载成功");
            if ([data writeToFile:@"UIWebViewDemo.zip" atomically:YES]) {
                NSLog(@"保存成功.");
            }
            else
            {
                NSLog(@"保存失败.");
            }
        } else {
            NSLog(@"%@", error);
        } </textarea><br>

2、异步下载文件:DownLoadingViewController.h

<textarea readonly name="code" class="plain">//
//  DownLoadingViewController.h
//  DownLoading
//
//  Created by skylin zhu on 11-7-30.
//  Copyright 2011年 mysoft. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface DownLoadingViewController : UIViewController {
    NSURLConnection *connection; 
    NSMutableData *connectionData;
}
@property (nonatomic,retain) NSURLConnection *connection;  
@property (nonatomic,retain) NSMutableData *connectionData;
@end
</textarea><br>
DownLoadingViewController.m

<textarea readonly name="code" class="plain">//
//  DownLoadingViewController.m
//  DownLoading
//
//  Created by skylin zhu on 11-7-30.
//  Copyright 2011年 mysoft. All rights reserved.
//

#import "DownLoadingViewController.h"

@implementation DownLoadingViewController
@synthesize connection,connectionData;
- (void)dealloc
{
    [super dealloc];
}

- (void)didReceiveMemoryWarning
{
    // Releases the view if it doesn't have a superview.
    [super didReceiveMemoryWarning];
   
    // Release any cached data, images, etc that aren't in use.
}

#pragma mark - View lifecycle


// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad
{
    [super viewDidLoad];
    //文件地址
    NSString *urlAsString = @"http://files.cnblogs.com/zhuqil/UIWebViewDemo.zip";
    NSURL    *url = [NSURL URLWithString:urlAsString];
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    NSMutableData *data = [[NSMutableData alloc] init];
    self.connectionData = data;
    [data release];
    NSURLConnection *newConnection = [[NSURLConnection alloc]
                                      initWithRequest:request
                                      delegate:self
                                      startImmediately:YES];
    self.connection = newConnection;
    [newConnection release];
    if (self.connection != nil){
       NSLog(@"Successfully created the connection");
    } else {
        NSLog(@"Could not create the connection");
    }
}




- (void) connection:(NSURLConnection *)connection
            didFailWithError:(NSError *)error{
    NSLog(@"An error happened");
    NSLog(@"%@", error);
}
- (void) connection:(NSURLConnection *)connection
              didReceiveData:(NSData *)data{
    NSLog(@"Received data");
    [self.connectionData appendData:data];
}
- (void) connectionDidFinishLoading
:(NSURLConnection *)connection{
    /* 下载的数据 */

        NSLog(@"下载成功");
        if ([self.connectionData writeToFile:@"UIWebViewDemo.zip" atomically:YES]) {
            NSLog(@"保存成功.");
        }
        else
        {
            NSLog(@"保存失败.");
        }
 
    /* do something with the data here */
}
- (void) connection:(NSURLConnection *)connection
          didReceiveResponse:(NSURLResponse *)response{
    [self.connectionData setLength:0];
}

- (void) viewDidUnload{
    [super viewDidUnload];
    [self.connection cancel];
    self.connection = nil;
    self.connectionData = nil;
}

@end
</textarea>从上面两段代码中可以看到同步与异步下载的区别,大部分时候我们使用异步下载文件。

上传文件

我们先使用VB.Net写一个webservice方法,用于接收上传上来的文件数据,我们可以从Request.Files中获取上传上来的文件数据。代码如下。

<textarea readonly name="code" class="vb">    <WebMethod(Description:="上传文件!")> _
Public Function UploadFile() As XmlDocument
        Dim doc As XmlDocument = New XmlDocument()
        Try
            Dim postCollection As HttpFileCollection = Context.Request.Files
            Dim aFile As HttpPostedFile = postCollection("media")
            aFile.SaveAs(Server.MapPath(".") + "/" + Path.GetFileName(aFile.FileName))
            doc.LoadXml("<xml>ok</xml>")
            Return doc
        Catch ex As Exception
            doc.LoadXml("<xml>fail</xml>")
            Return doc
        End Try
    End Function
</textarea><br>

定义一个类PicOperation用于处理上传图片:PicOperation.h

<textarea readonly name="code" class="plain">//
//  PicOperation.h
//  DownLoading
//
//  Created by skylin zhu on 11-7-30.
//  Copyright 2011年 mysoft. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface PicOperation : NSOperation
{
UIImage *theImage;
}
@property (retain) UIImage *theImage;
@end
</textarea>

PicOperation.m:

<textarea readonly name="code" class="plain">//
//  PicOperation.m
//  DownLoading
//
//  Created by skylin zhu on 11-7-30.
//  Copyright 2011年 mysoft. All rights reserved.
//

#import "PicOperation.h"

#define NOTIFY_AND_LEAVE(X) {[self cleanup:X]; return;}
#define DATA(X) [X dataUsingEncoding:NSUTF8StringEncoding]

// Posting constants
#define IMAGE_CONTENT @"Content-Disposition: form-data; name=\"%@\"; filename=\"image.jpg\"\r\nContent-Type: image/jpeg\r\n\r\n"
#define STRING_CONTENT @"Content-Disposition: form-data; name=\"%@\"\r\n\r\n"
#define MULTIPART @"multipart/form-data; boundary=------------0x0x0x0x0x0x0x0x"

@implementation PicOperation
@synthesize theImage;

//创建postdata
- (NSData*)generateFormDataFromPostDictionary:(NSDictionary*)dict
{
    id boundary = @"------------0x0x0x0x0x0x0x0x";
    NSArray* keys = [dict allKeys];
    NSMutableData* result = [NSMutableData data];

    for (int i = 0; i < [keys count]; i++)
    {
        id value = [dict valueForKey: [keys objectAtIndex:i]];
        [result appendData:[[NSString stringWithFormat:@"--%@\r\n", boundary] dataUsingEncoding:NSUTF8StringEncoding]];

if ([value isKindOfClass:[NSData class]])
{
// handle image data
NSString *formstring = [NSString stringWithFormat:IMAGE_CONTENT, [keys objectAtIndex:i]];
[result appendData: DATA(formstring)];
[result appendData:value];
}
else
{
// all non-image fields assumed to be strings
NSString *formstring = [NSString stringWithFormat:STRING_CONTENT, [keys objectAtIndex:i]];
[result appendData: DATA(formstring)];
[result appendData:DATA(value)];
}

NSString *formstring = @"\r\n";
        [result appendData:DATA(formstring)];
    }

NSString *formstring =[NSString stringWithFormat:@"--%@--\r\n", boundary];
    [result appendData:DATA(formstring)];
    return result;
}
//上传图片
- (NSString *) UpLoading
{
if (!self.theImage)
NOTIFY_AND_LEAVE(@"Please set image before uploading.");
   
   
NSMutableDictionary* post_dict = [[NSMutableDictionary alloc] init];
   
[post_dict setObject:@"Posted from iPhone" forKey:@"message"];
[post_dict setObject:UIImageJPEGRepresentation(self.theImage, 0.75f) forKey:@"media"];

NSData *postData = [self generateFormDataFromPostDictionary:post_dict];
[post_dict release];

    NSString *baseurl = @"http://10.5.23.121:7878/WorkflowService.asmx/UploadFile";
    NSURL *url = [NSURL URLWithString:baseurl];
    NSMutableURLRequest *urlRequest = [NSMutableURLRequest requestWithURL:url];
    if (!urlRequest) NOTIFY_AND_LEAVE(@"Error creating the URL Request");

    [urlRequest setHTTPMethod: @"POST"];
[urlRequest setValue:MULTIPART forHTTPHeaderField: @"Content-Type"];
    [urlRequest setHTTPBody:postData];

// Submit &amp; retrieve results
    NSError *error;
    NSURLResponse *response;
NSLog(@"Contacting TwitPic....");
    NSData* result = [NSURLConnection sendSynchronousRequest:urlRequest returningResponse:&amp;response error:&amp;error];
    if (!result)
{
[self cleanup:[NSString stringWithFormat:@"Submission error: %@", [error localizedDescription]]];
return;
}

// Return results
    NSString *outstring = [[[NSString alloc] initWithData:result encoding:NSUTF8StringEncoding] autorelease];
    return outstring;
}
@end</textarea>这里我主要定义了两个方法,一个是generateFormDataFromPostDictionary用于创建post form data,一个是UpLoading供调用的类上传图片,这个类需要一个UIimage的对象。

类定义好了,上传图片就非常方便了,看下面代码:

<textarea readonly name="code" class="plain">    PicOperation *pic = [[PicOperation alloc] init];
    pic.theImage=[UIImage imageNamed:@"meinv4.jpg"];;
    NSString *result = [pic UpLoading];
    NSLog(result);

</textarea>总结:这篇文章讲述了如何在iOS中结合asp.net webservice实现文件的上传和下载功能。<br>

 
0
0
分享到:
评论

相关推荐

    C# 手机控制电脑 TTC 1.0 版本!ASP.NET+WINFORM+WEBSERVICE

    通过结合ASP.NET、WinForm和WebService技术,实现了手机远程控制电脑的功能,让移动设备能够实时操作和管理远程计算机。下面我们将分别介绍这三个关键组件以及它们在项目中的应用。 1. ASP.NET:ASP.NET是微软公司...

    .NET C#创建WebService服务简单实例

    3. 新建网站后,你会在解决方案管理器中看到一个`web.config`文件,通过配置这个文件,你可以实现从浏览器远程调用WebService。 4. 右键点击解决方案中的项目,选择“添加”-&gt;“新项”,然后在模板中选择“Web服务...

    通过webservice连接数据库

    这个服务可以使用诸如ASP.NET、Java等技术编写,负责连接到SQL Server数据库,执行SQL查询或操作。 6. **数据获取**:在服务器端,通过ADO.NET(对于.NET环境)或JDBC(对于Java环境)库与SQL Server建立连接,执行...

    PHP webservice 接口,服务器端,客户端接口

    自己做的php webservice 接口json格式的 可改成xml格式.提供新手使用,说明文档很详细. 可 java asp.net 安卓 ios 调用php接口 非常简单的webservice接口代码 上手就能用

    C#WebService服务(application/json)

    压缩包中的"webservice"文件可能包含了一个实际的C# Web服务项目示例,包括源代码和服务的实现细节。通过查看这些文件,你可以更深入地理解如何在C#中构建和操作JSON支持的Web服务。 总之,C# WebService服务支持`...

    用抽象工厂做的一个网上书店(终结版)

    【标题】"用抽象工厂做的一个网上书店(终结版)" 涉及的主要知识点是设计模式中的抽象工厂模式,以及在Web开发中常见的ASP.NET技术、AJAX和WebService的应用。 1. 抽象工厂模式:这是一种创建型设计模式,它提供了...

    IT编程视频教程地址

    在ASP.NET中实现一个权限管理系统对于保护敏感信息至关重要。 ### 2. J2EE 实战项目 - **移动项目**: J2EE(Java 2 Platform, Enterprise Edition)是一个广泛使用的服务器端开发平台,适用于构建大型企业级应用。...

    FLEX企业应用开发实战(完整版)

    8. **Flex与后台集成**:探讨Flex与Java、PHP、ASP.NET等后端技术的集成,实现企业级数据访问和业务逻辑处理。 9. **移动应用开发**:如果书中包含这部分内容,将介绍如何使用Flex开发针对移动设备的应用,如...

    社会保险信息管理系统.doc

    在社保系统的一期中,系统架构采用 ASP.NET 技术体系,通过 B/S 应用模式构建系统技术架构。系统分划分为 4 层,从上到下依次为用户表示层、业务逻辑层、数据模型层、数据存储层。社保系统移动终端分为基于 Apple ...

Global site tag (gtag.js) - Google Analytics