Расчет размера файла перед загрузкой - PullRequest
1 голос
/ 01 апреля 2010

То, что я хочу сделать, объясняется следующим образом.

У меня есть URL файла MP3. (например Звуковой файл )

Когда пользователь запускает приложение, должна начаться загрузка и для этого я реализовал следующие методы:

-(void)viewDidLoad {
    [super viewDidLoad];
    NSURL *url=[NSURL URLWithString:@"http://xyz.pqr.com/abc.mp3"];
    NSURLRequest *req=[NSURLRequest requestWithURL:url cachePolicy:NSURLCacheStorageNotAllowed timeoutInterval:120];

    NSURLConnection *con=[[NSURLConnection alloc] initWithRequest:req delegate:self startImmediately:YES];

    if(con){
        myWebData=[[NSMutableData data] retain];
        } else {
        //          [MainHandler performSelector:@selector(targetSelector:) withObject:nil];
      } 
     }


-(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response{

    NSLog(@"%@",@"connection established");
    [myWebData setLength: 0];

}

-(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
    NSLog(@"%@",@"connection receiving data");
    [myWebData appendData:data]; 
}

-(void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
    NSLog(@"%@",@"connection failed");
    [connection release];
    //  [AlertViewHandler showAlertWithErrorMessage:@"Sorry, there is no network connection. Please check your network and try again."];
//  [self parserDidEndDocument:nil];
}

-(void)connectionDidFinishLoading:(NSURLConnection *)connection {
    [connection release];
}

Вышеуказанные методы отлично работают для скачивания. Но я не могу получить точный размер, который будет загружен. Я хочу знать, каков размер файла - который будет загружен.

Ответы [ 2 ]

7 голосов
/ 01 апреля 2010

Просто используйте ожидаемый размер объекта для объекта NSURLResponse, который передается следующим методам делегата:

-(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {

}
-(NSURLRequest *)connection:(NSURLConnection *)connection
        willSendRequest:(NSURLRequest *)request
       redirectResponse:(NSURLResponse *)response {
}

как это:

long long size = [response expectedContentLength];
0 голосов
/ 01 апреля 2010

Да! Почти сделано с ASIHTTP.

-(IBAction)btnTapped:(id)sender {
    NSURL *url = [NSURL URLWithString:@"http://sound20.mp3pk.com/indian/omkara/omkara1%28songs.pk%29.mp3"];
    ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
    [request setDownloadDestinationPath:[self pathForLogInCCID]];
    [myProgressIndicator setProgress:0];

    [request setDownloadProgressDelegate:myProgressIndicator];
    [request startSynchronous];
[myProgressIndicator doubleValue]);

    [request setDelegate:self];
    [request startAsynchronous];
}


- (void)requestFinished:(ASIHTTPRequest *)request
{
    // Use when fetching text data
//  NSString *responseString = [request responseString];

    // Use when fetching binary data
//  NSData *responseData = [request responseData];
}

- (void)requestFailed:(ASIHTTPRequest *)request
{
//  NSError *error = [request error];
}

-(NSString*)pathForLogInCCID{
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *DataPath = [documentsDirectory stringByAppendingPathComponent:@"mySong.png"];
    return DataPath;
}
...