如何将NSInputStream转换为NSString或如何读取NSInputStream

时间:2016-12-22 22:51:49

标签: ios objective-c nsinputstream

我正在尝试将输入流转换为字符串。我试图转换的输入流是NSURLRequest.HTTPBodyStream,显然httpbody设置为null并在您发出请求后替换为流。我该怎么做呢?这就是我到目前为止所做的:

#define MAX_UTF8_BYTES 6
    NSString *utf8String;
    NSMutableData *_data = [[NSMutableData alloc] init]; //for easy 'appending' bytes

    int bytes_read = 0;
    while (!utf8String) {
        if (bytes_read > MAX_UTF8_BYTES) {
            NSLog(@"Can't decode input byte array into UTF8.");
            break;
        }
        else {
            uint8_t byte[1];
            [r.HTTPBodyStream read:byte maxLength:1];
            [_data appendBytes:byte length:1];
            utf8String = [NSString stringWithUTF8String:[_data bytes]];
            bytes_read++;
        }
    }

当我打印字符串时,它总是空的或包含单个字符,甚至不打印null。有什么建议吗?

1 个答案:

答案 0 :(得分:4)

知道了。我试图访问的流没有被打开。即使这样,它也是只读的。所以我复制了它然后打开它。但这仍然不对,我一次只读一个字节(一个字符)。所以这是最终的解决方案:

NSInputStream *stream = r.HTTPBodyStream;
uint8_t byteBuffer[4096];

[stream open];
if (stream.hasBytesAvailable)
{
    NSLog(@"bytes available");
    NSInteger bytesRead = [stream read:byteBuffer maxLength:sizeof(byteBuffer)]; //max len must match buffer size
    NSString *stringFromData = [[NSString alloc] initWithBytes:byteBuffer length:bytesRead encoding:NSUTF8StringEncoding];

    NSLog(@"another pathetic attempt: %@", stringFromData);
}