2011-03-25 26 views
1
- (IBAction) uploadImage { 
    /* 
    turning the image into a NSData object 
    getting the image back out of the UIImageView 
    setting the quality to 100 
    */ 
     NSData *imageData = UIImageJPEGRepresentation(image.image, 100); 
     // setting up the URL to post to 
    NSString *urlString = @"http://uploadhere.com/photos/iphone.php"; 

    // 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\n--%@\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];  
    [body appendData:[[NSString stringWithString:@"Content-Disposition: form-data; name=\"q\"\r\n\r\n"] dataUsingEncoding:NSUTF8StringEncoding]]; 
    [body appendData:[[NSString stringWithString:@"Content-Type: application/octet-stream\r\n\r\n"] dataUsingEncoding:NSUTF8StringEncoding]]; 
    [body appendData:[NSData dataWithData:imageData]]; 
    [body appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]]; 
    NSLog(@"here1"); 
    // setting the body of the post to the reqeust 
    [request setHTTPBody:body]; 
    NSLog(@"here2"); 
    // now lets make the connection to the web 
    NSData *returnData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil]; 
    returnString = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding]; 
    NSLog(@"here3"); 
    //NSLog(returnString); 
    //picText = rowZero.pickerLabel.text; 
    NSLog(@"here4"); 
    rowZero.path  = returnString; 
    //NSLog(rowZero.path); 


} 

我已經從一些示例採取了這種代碼,我在我的應用程序使用它......但我不知道爲什麼它顯示我那個圖像實際上並沒有上傳......任何人都可以告訴我最新的錯誤?什麼樣的變化在上傳圖片的這個代碼,並從服務器獲取性反應

+1

每次你發出一個同步網絡請求,上帝殺死一隻貓。 – JustSid 2011-03-25 14:48:16

回答

1

請改變這個

的NSData *的imageData = UIImageJPEGRepresentation(image.image,100);

NSData * imageData = UIImageJPEGRepresentation(urimageRepresentation,100);
給你自己的圖片表示

相關問題