(iPhone/iPad)ファイルのアップロードとダウンロード
ファイルのダウンロード:
ここで、1番目のパラメータurlはファイルダウンロードアドレスであり、2番目のパラメータnameはファイルがローカルに保存されているファイル名である.
ファイルのアップロード:
まだまだ方法はたくさんあります
アップロードダウンロード方法の詳細については、以下を参照してください.
1.iOS開発の結合asp.Netwebserviceはファイルのアップロードとダウンロードを実現するhttp://www.cnblogs.com/zhuqil/archive/2011/07/30/2122019.html 2.http://www.flyblog.info/catprogramming/392.html
-(void)downLoadImages: (NSString *)url saveAsImagesName:(NSString *)name{
ASIHTTPRequest *request;
request = [[[ASIHTTPRequest alloc] initWithURL:[NSURL URLWithString:url]]autorelease];
[request setDownloadDestinationPath:[[NSHomeDirectory()stringByAppendingPathComponent:@"Documents"]stringByAppendingPathComponent:name]];
[request setNumberOfTimesToRetryOnTimeout:2 ];
[request startSynchronous];
NSError *error = [request error];
if (!error) {
UIImage *img = [UIImage imageWithContentsOfFile:[request downloadDestinationPath]];
if (img) {
[imgPerson setImage:img];
}
}else{
UIAlertView *alert=[[UIAlertView alloc]initWithTitle:nil message:@" ! !" delegate:self cancelButtonTitle:@" " otherButtonTitles:nil];
[alert show];
[alert release];
}
}
ここで、1番目のパラメータurlはファイルダウンロードアドレスであり、2番目のパラメータnameはファイルがローカルに保存されているファイル名である.
ファイルのアップロード:
//
- (void)uploadImage {
NSData *imageData = UIImagePNGRepresentation(imgPerson.image);
// setting up the URL to post to
NSString *urlString = @"http://www.xxxx.com/lsmobile/UploadServlet";
// setting up the request object now
NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];
[request setURL:[NSURL URLWithString:urlString]];
[request setHTTPMethod:@"POST"];
/*
add some header info now
we always need a boundary when we post a file
also we need to set the content type
You might want to generate a random boundary.. this is just the same
as my output from wireshark on a valid html post
*/
NSString *boundary = [NSString stringWithString:@"---------------------------14737809831466499882746641449"];
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundary];
[request addValue:contentType forHTTPHeaderField: @"Content-Type"];
/*
now lets create the body of the post
*/
NSMutableData *body = [NSMutableData data];
[body appendData:[[NSString stringWithFormat:@"\r
--%@\r
",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"userfile\"; filename=\"%@\"\r
",strHeadPath] dataUsingEncoding:NSUTF8StringEncoding]];
[strHeadPath release];
strHeadPath=nil;
[body appendData:[[NSString stringWithString:@"Content-Type: application/octet-stream\r
\r
"] dataUsingEncoding:NSUTF8StringEncoding]];
[body appendData:[NSData dataWithData:imageData]];
[body appendData:[[NSString stringWithFormat:@"\r
--%@--\r
",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
// setting the body of the post to the reqeust
[request setHTTPBody:body];
NSError *errorMsg=nil;
// now lets make the connection to the web
NSData *returnData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:&errorMsg];
if (!errorMsg) {
NSString *returnString = [[[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding] autorelease];
NSLog(returnString);
if ([returnString isEqualToString:@"Fail"]) {
UIAlertView *alert=[[UIAlertView alloc]initWithTitle:nil message:@"sorry, , " delegate:self cancelButtonTitle:@" " otherButtonTitles:nil];
[alert show];
[alert release];
}else{
strImgPath=[[NSString alloc] initWithFormat:@"%@",returnString];// release
uploadFlg=true;
}
[returnString release];
returnString=nil;
}else{
UIAlertView *alert=[[UIAlertView alloc]initWithTitle:nil message:@" ! !" delegate:self cancelButtonTitle:@" " otherButtonTitles:nil];
[alert show];
[alert release];
}
}
このセグメントのコードの中でアップロードするのはピクチャーで、もしその他のファイルをアップロードしたいならば、最初のNSDataデータソースを変更することができます.まだまだ方法はたくさんあります
アップロードダウンロード方法の詳細については、以下を参照してください.