gpt4 book ai didi

iphone - nsinputstream 到字符串?

转载 作者:行者123 更新时间:2023-12-03 19:39:59 25 4
gpt4 key购买 nike

是否有办法查看 nsinputstream 中的值,例如将其转换为字符串?

最佳答案

我假设您指的是从 NSInputStream 返回的数据:

- (NSInteger)read:(uint8_t *)buffer maxLength:(NSUInteger)len;

试试这个:

NSInteger bytesRead = [myInputStream read:&byteBuffer maxLength:4096];
NSString *stringFromData = [[NSString alloc] initWithBytes:byteBuffer length:bytesRead encoding:NSUTF8StringEncoding];

关于iphone - nsinputstream 到字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5356664/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com