-1
我正在研究一個基於webservice的應用程序,其中在調用Web服務方法後,響應是zip文件,我必須將此zip文件存儲到文檔目錄文件夾中。請解釋我如何去做。先謝謝你。如何在文檔目錄中存儲壓縮文件?
我正在研究一個基於webservice的應用程序,其中在調用Web服務方法後,響應是zip文件,我必須將此zip文件存儲到文檔目錄文件夾中。請解釋我如何去做。先謝謝你。如何在文檔目錄中存儲壓縮文件?
可以使用波紋管代碼存儲在文件目錄ZIP: -
NSArray *path = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentDirectory = [path objectAtIndex:0];
NSString *setPath = [documentDirectory stringByAppendingPathComponent:filname.zip];
NSData *data = .... // your Zip data
[data writeToFile:setPath atomically:YES encoding:NSUTF8StringEncoding error:nil];