iphone - 从Inputstream读取Objective-C

标签 iphone objective-c sockets client

在iPhone应用程序中,我通过套接字将一些数据发送到服务器。该应用程序应从服务器收到答案(问题不在服务器端)。那是我的代码:

-(void)sendLocation {

NSLog(@"sendLocation %@, %@", lat, lon);

NSString *imei = @"12345484654";


NSDictionary *sendData = [NSDictionary dictionaryWithObjectsAndKeys:
                          @"0", @"type", 
                          imei, @"imei",
                          lat, @"lat",
                          lon, @"lon", 
                          nil];


NSLog (@"JSON: %@", (NSString*)sendData);
NSString *outJSON = [sendData JSONRepresentation];  




CFReadStreamRef readStream;
CFWriteStreamRef writeStream;
        // CFStreamCreatePairWithSocketToHost(NULL, (CFStringRef)@"192.168.0.36", 12390, NULL, &writeStream);
CFStreamCreatePairWithSocketToHost(NULL, (CFStringRef)@"192.168.0.36", 12390, &readStream, &writeStream);
inputStream = (NSInputStream *)readStream;
outputStream = (NSOutputStream *)writeStream;
[inputStream setDelegate:self];
[outputStream setDelegate:self];
[inputStream scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
[outputStream scheduleInRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode];
[inputStream open];
[outputStream open];

NSData *data = [[NSData alloc] initWithData:[outJSON dataUsingEncoding:NSASCIIStringEncoding]];
NSString *end = @"\n###";
NSData *endData = [[NSData alloc] initWithData:[end dataUsingEncoding:NSASCIIStringEncoding]];
[outputStream write:[data bytes] maxLength:[data length]];
[outputStream write:[endData bytes] maxLength:[endData length]];
[outputStream close];

[outputStream removeFromRunLoop:[NSRunLoop currentRunLoop]

                        forMode:NSDefaultRunLoopMode];
[outputStream release]; 



}

- (void)stream:(NSStream *)aStream handleEvent:(NSStreamEvent)eventCode {
NSLog(@"got an event");
switch (eventCode) {
    case NSStreamEventHasSpaceAvailable:
        NSLog(@"None!");
        break;
    case NSStreamEventOpenCompleted:
        NSLog(@"Stream opened");
        break;
    case NSStreamEventHasBytesAvailable:
        if (aStream == inputStream) {
           uint8_t buffer[1024];
           int len;
           while ([inputStream hasBytesAvailable]) {
              len = [inputStream read:buffer maxLength:sizeof(buffer)];
              if (len > 0) {
                 NSString *output = [[NSString alloc] initWithBytes:buffer length:len encoding:NSASCIIStringEncoding];
                     if (nil != output) {
                          NSLog(@"%@",output);
                     }
              }
         }
     }





    [inputStream close];
    [inputStream removeFromRunLoop:[NSRunLoop currentRunLoop]forMode:NSDefaultRunLoopMode];
    [inputStream release];
        break;  
    case NSStreamEventErrorOccurred:
          NSLog(@"CONNECTION ERROR: Connection to the host  failed!");
          break;
    case NSStreamEventEndEncountered:
          NSLog(@"Stream Closed");
          break;    
    default:
          break;
      } 
}

日志给我:
2012-08-22 14:58:52.117 Second[1272:11603] got an event
2012-08-22 14:58:52.117 Second[1272:11603] Stream opened
2012-08-22 14:58:52.117 Second[1272:11603] got an event
2012-08-22 14:58:52.117 Second[1272:11603] None!

所以Inputstream发生了什么事吧?但是从来没有收到任何东西。我也不确定在哪里关闭和释放Inputstream。
关于这有什么问题的提示将不胜感激:)

最佳答案

我猜你的代码没有正确地将数据发送到服务器。它首先尝试将数据发送到服务器,因为释放输出流后它将停止工作。这是我之前为该事件编写的代码。

       case NSStreamEventHasSpaceAvailable: {
                if(stream == outputStream) {

    // str is your string to send the server
        NSData* data = [str dataUsingEncoding:NSASCIIStringEncoding];
        int byteIndex = 0;
        uint8_t *readBytes = (uint8_t *)[data bytes];
        readBytes += byteIndex; // instance variable to move pointer
        int data_len = [data length];
        unsigned int len = ((data_len - byteIndex >= 1024) ?
                            1024 : (data_len-byteIndex));
        uint8_t buf[len];
        (void)memcpy(buf, readBytes, len);
        len = [outputStream write:(const uint8_t *)buf maxLength:len];
        byteIndex += len;
    }
  // release your outputstream
break;
}

我可以建议你在同样的地方;

this place is for communicating with tcp server.

this place is for sending and getting with nsstream

最后,我建议您使用NSJSONSerialization来处理json对象。

关于iphone - 从Inputstream读取Objective-C,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12074084/

相关文章:

iphone - 如何更改 iPhone SDK 中分组 TableView 中节标题的文本颜色?

ios - 如何在顶部中心设置标签

c# - TCP Socket中SocketError.ConnectionReset的可能原因有哪些

javascript - 如何从套接字迭代多个值

ios - 缺少推送通知授权 iOS 应用程序提交(我不使用它)

ios - 找不到库 -lPods

iOS 启动屏幕不会停止显示 launchscreen.xib

iphone - 将NSArray的随机对象放置到NSArray的随机UIButtons标题中

objective-c - 如何在黑色窗口上隐藏 NSTableView 的白色轮廓?

c++ - QIODevice::waitForReadyRead 是否隐式刷新输出队列(waitForBytesWritten)?