I'm kind of new on Objective C, so I'm trying to do stuff I usually do in Java, like converting an InputStream into a String. Basically, I want to do this Java code in Objective C...
InputStream in = … //An inputStream i got from http request
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
StringBuilder str = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
str.append(line);
}
String myString = str.toString();
in.close();
I hope my problem is described clear enough! :)
Thanks!
NSString * myString = [ NSString stringWithContentsOfURL:theURL ]– nielsbot Feb 13 at 4:34NSURLConnectionas others have suggested. – nielsbot Feb 13 at 6:24