Convert NSData of Image from database to NSString in iPhone

☆樱花仙子☆ 提交于 2019-12-25 18:18:12

问题


I am converting NSData of Image from database to NSString in Iphone

Here is my code

imageData1 = [[NSData alloc] initWithBytes:sqlite3_column_blob(compiledStatement, 3) length: sqlite3_column_bytes(compiledStatement, 3)];           
NSString * Str1 = [NSString base64StringFromData: imageData1 length: [imageData1 length]];
NSData *data1=[NSData base64DataFromString:Str1];
NSString* newStr1 = [[NSString alloc] initWithData:data1 encoding:NSUTF8StringEncoding];

the length of data is 6511 , but the newstr1 is nil

With reference to this question: I can't create a UTF-8 encoded string out of just any arbitrary binary data from the database - the data needs to actually be UTF-8 encoded. I have aslo done base 64 encoding and decoding. How can I solve this issue. I need it in the format of NSString only, to give it as input to a csv file?


回答1:


I don't have ample knowledge of character encoding, but would it not be sufficient to just use the Base 64 encoded string (Str1) in your output?

I fear that re-encoding Str1 as data1 brings you right back to square 1 and undoes any Base 64 encoding done in the line earlier.



来源:https://stackoverflow.com/questions/5194501/convert-nsdata-of-image-from-database-to-nsstring-in-iphone

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!