我需要將圖像發送到服務器上的網址看起來如下如何發送圖像服務器URL在IOS
http://somewebsite.com:8080/app/api/fappname/newUser/1/Delhi481/cct/12 DK/11588/kmkr/72579 /洛杉磯/ TM/8:00/13 :00/28.6100/77.2300/foto1.jpg/null
他們要求我發送圖像以代替foto1.jpg,現在我使用的代碼如下所示,我正在發送null圖像原位得到迴應。任何人都可以發送給我如何發送圖像在這個網址。
NSString *str = [NSString stringWithFormat:@"http://someurl.com:8080/app/api/kkknnmm/newUser/1/%@/%@/%@/%@/%@/%@/%@/TM/%@/%@/%@/%@/%@/%@/%@",[inSchoolName stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding],@"kktt",[inAddressStreet stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding],inAddressNo,inAddressState,inZipCode,[inNeighbourhood stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding],[arrivalHR stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding],[endingHr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding],inlat,inlong,inImg1,inImg2,inImg3];
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:str]];
NSLog(@"Login Url:%@",str);
connection = [[NSURLConnection alloc] initWithRequest:request delegate:self];
任何人都可以幫助我。
「我收到回覆」。你有什麼反應?你沒有解釋什麼是/沒有發生。即這裏沒有問題。此外,您是否與創建該API的人交談過,並要求他們向您發送成功上傳圖片的示例(不含null)? – Fogmeister
你可以看看http://stackoverflow.com/questions/2323709/send-image-to-server-as-binary-data –
回顧這個http://stackoverflow.com/questions/16434537/post-image -to-server-in-iphone/16434601#16434601 – Buntylm