ASIHTTPRequest - проблема с загрузкой - PullRequest
0 голосов
/ 05 июля 2011

Я пытаюсь загрузить файл с моего сервера, это код, на моей консоли я вижу файл xml, но не могу его сохранить.Где проблема для вас?

- (IBAction)grabURL:(id)sender{

    NSURL *url = [NSURL URLWithString:@"http://www.endurodoc.net/photo/data.xml"];
    ASIHTTPRequest *request = [ASIHTTPRequest requestWithURL:url];
    [request startSynchronous];

    NSError *error = [request error];
    if (!error) {
        NSString *response = [request responseString];
        NSLog(@"%@",response);

    }
    else{
        NSLog(@"Errore");
    }    

    //[request setDownloadDestinationPath:@"/Users/kikko/Desktop/data.xml"];

    // SAVED PDF PATH
    // Get the Document directory
    NSString *documentDirectory = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) lastObject];
    // Add your filename to the directory to create your saved pdf location
    NSString *pdfLocation = [documentDirectory stringByAppendingPathComponent:@"data.xml"];

    // TEMPORARY PDF PATH
    // Get the Caches directory
    NSString *cachesDirectory = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
    // Add your filename to the directory to create your temp pdf location
    NSString *tempPdfLocation = [cachesDirectory stringByAppendingPathComponent:@"data.xml"];

    // Tell ASIHTTPRequest where to save things:
    [request setTemporaryFileDownloadPath:tempPdfLocation];     
    [request setDownloadDestinationPath:pdfLocation]; 

}

1 Ответ

3 голосов
/ 05 июля 2011

Вам нужно поставить:

[request setTemporaryFileDownloadPath:tempPdfLocation];     
[request setDownloadDestinationPath:pdfLocation]; 

перед:

[request startSynchronous];

ASIHTTPRequest сохраняет файл при выполнении запроса, поэтому, если вы установите эти свойства после того, как запрос ужеслучилось потом ничего не будет.

...