假如你也是一个java程序员,而你又不是很懂Socket。
下面我的这篇文章也许能帮助你一些。
http://xiva.iteye.com/blog/993336
首先我们写好上面文章中的server端。
下面我们可以访问一下下面的地址:
http://code.google.com/p/cocoaasyncsocket/
这是一个开源框架。呵,不知道拿到自己程序中使用是否涉及侵权。
但是这句话“The CocoaAsyncSocket project is in the public domain.”是我有信心使用它们的源码,否则只能自己用c来写了,或者使用CFSocket、CFNetwork等类自己来写了。不过也无妨,应在在使用线程的情况下,我们也是可以实现的。
总之,为了开发的便捷,我使用了AsyncSocket这个类,这样可以异步通信。
建立一个基于视图的应用程序,按照http://code.google.com/p/cocoaasyncsocket/wiki/Reference_AsyncSocket
我们AsyncSocket.h和AsyncSocket.m到我们的项目中,并且导入CFNetwork.framework。这样基本准备工作就做好了。
下面提供我的应用中的代码以及界面图:
// // SocketDemoViewController.h // SocketDemo // // Created by xiang xiva on 10-7-10. // Copyright 2010 __MyCompanyName__. All rights reserved. // #import <UIKit/UIKit.h> #import "AsyncSocket.h" #define SRV_CONNECTED 0 #define SRV_CONNECT_SUC 1 #define SRV_CONNECT_FAIL 2 #define HOST_IP @"192.168.110.1" #define HOST_PORT 8080 @interface SocketDemoViewController : UIViewController { UITextField *inputMsg; UILabel *outputMsg; AsyncSocket *client; } @property (nonatomic, retain) AsyncSocket *client; @property (nonatomic, retain) IBOutlet UITextField *inputMsg; @property (nonatomic, retain) IBOutlet UILabel *outputMsg; - (int) connectServer: (NSString *) hostIP port:(int) hostPort; - (void) showMessage:(NSString *) msg; - (IBAction) sendMsg; - (IBAction) reConnect; - (IBAction) textFieldDoneEditing:(id)sender; - (IBAction) backgroundTouch:(id)sender; @end
// // SocketDemoViewController.m // SocketDemo // // Created by xiang xiva on 10-7-10. // Copyright 2010 __MyCompanyName__. All rights reserved. // #import "SocketDemoViewController.h" @implementation SocketDemoViewController @synthesize inputMsg, outputMsg; @synthesize client; /* // The designated initializer. Override to perform setup that is required before the view is loaded. - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; if (self) { // Custom initialization } return self; } */ /* // Implement loadView to create a view hierarchy programmatically, without using a nib. - (void)loadView { } */ // Implement viewDidLoad to do additional setup after loading the view, typically from a nib. - (void)viewDidLoad { //[super viewDidLoad]; [self connectServer:HOST_IP port:HOST_PORT]; //监听读取 } // Override to allow orientations other than the default portrait orientation. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { return YES; } - (void)didReceiveMemoryWarning { // Releases the view if it doesn't have a superview. [super didReceiveMemoryWarning]; // Release any cached data, images, etc that aren't in use. } - (void)viewDidUnload { self.client = nil; // Release any retained subviews of the main view. // e.g. self.myOutlet = nil; } - (int) connectServer: (NSString *) hostIP port:(int) hostPort{ if (client == nil) { client = [[AsyncSocket alloc] initWithDelegate:self]; NSError *err = nil; //192.168.110.128 if (![client connectToHost:hostIP onPort:hostPort error:&err]) { NSLog(@"%@ %@", [err code], [err localizedDescription]); UIAlertView *alert = [[UIAlertView alloc] initWithTitle:[@"Connection failed to host " stringByAppendingString:hostIP] message:[[[NSString alloc]initWithFormat:@"%@",[err code]] stringByAppendingString:[err localizedDescription]] delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil]; [alert show]; [alert release]; //client = nil; return SRV_CONNECT_FAIL; } else { NSLog(@"Conectou!"); return SRV_CONNECT_SUC; } } else { [client readDataWithTimeout:-1 tag:0]; return SRV_CONNECTED; } } - (IBAction) reConnect{ int stat = [self connectServer:HOST_IP port:HOST_PORT]; switch (stat) { case SRV_CONNECT_SUC: [self showMessage:@"connect success"]; break; case SRV_CONNECTED: [self showMessage:@"It's connected,don't agian"]; break; default: break; } } - (IBAction) sendMsg{ NSString *inputMsgStr = self.inputMsg.text; NSString * content = [inputMsgStr stringByAppendingString:@"\r\n"]; NSLog(@"%a",content); NSData *data = [content dataUsingEncoding:NSISOLatin1StringEncoding]; [client writeData:data withTimeout:-1 tag:0]; //[data release]; //[content release]; //[inputMsgStr release]; //继续监听读取 //[client readDataWithTimeout:-1 tag:0]; } #pragma mark - #pragma mark close Keyboard - (IBAction) textFieldDoneEditing:(id)sender{ [sender resignFirstResponder]; } - (IBAction) backgroundTouch:(id)sender{ [inputMsg resignFirstResponder]; } #pragma mark socket uitl - (void) showMessage:(NSString *) msg{ UIAlertView * alert = [[UIAlertView alloc]initWithTitle:@"Alert!" message:msg delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil]; [alert show]; [alert release]; } #pragma mark socket delegate - (void)onSocket:(AsyncSocket *)sock didConnectToHost:(NSString *)host port:(UInt16)port{ [client readDataWithTimeout:-1 tag:0]; } - (void)onSocket:(AsyncSocket *)sock willDisconnectWithError:(NSError *)err { NSLog(@"Error"); } - (void)onSocketDidDisconnect:(AsyncSocket *)sock { NSString *msg = @"Sorry this connect is failure"; [self showMessage:msg]; [msg release]; client = nil; } - (void)onSocketDidSecure:(AsyncSocket *)sock{ } - (void)onSocket:(AsyncSocket *)sock didReadData:(NSData *)data withTag:(long)tag{ NSString* aStr = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]; NSLog(@"Hava received datas is :%@",aStr); self.outputMsg.text = aStr; [aStr release]; [client readDataWithTimeout:-1 tag:0]; } #pragma mark dealloc - (void)dealloc { [client release]; [inputMsg release]; [outputMsg release]; [super dealloc]; } @end
还是先给出我的界面吧,否则很难懂这些代码
这样大家满意了吧!
好了说了这么多我们还是来看看代码究竟怎么回事吧。
首先从头文件开始看吧,
1,导入头文件#import "AsyncSocket.h",然后是一些宏
2,声明一个AsyncSocket对象,其他就是一些IBoutlet
再次我们看看视图加载,
- (void)viewDidLoad { //[super viewDidLoad]; [self connectServer:HOST_IP port:HOST_PORT]; //监听读取 }
显然我们调用了connectServer::这个方法。
在这个方法中,首先初始化我们的对象,使用代理的方式。对象显示是self。然后我们便需在我们的类中实现它的各种方法,来得到各种我们想得到的。
client = [[AsyncSocket alloc] initWithDelegate:self];
下面就是连接服务器了,
[client connectToHost:hostIP onPort:hostPort error:&err]
并且当client不为空时,我们就读取服务器的信息
[client readDataWithTimeout:-1 tag:0];
- (void)onSocket:(AsyncSocket *)sock didReadData:(NSData *)data withTag:(long)tag{ NSString* aStr = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]; NSLog(@"Hava received datas is :%@",aStr); self.outputMsg.text = aStr; [aStr release]; [client readDataWithTimeout:-1 tag:0]; }
在这个方法中很耐人寻味,主要就是在于递归的调用。
- (IBAction) sendMsg{ NSString *inputMsgStr = self.inputMsg.text; NSString * content = [inputMsgStr stringByAppendingString:@"\r\n"]; NSLog(@"%a",content); NSData *data = [content dataUsingEncoding:NSISOLatin1StringEncoding]; [client writeData:data withTimeout:-1 tag:0]; }
我们在看看上面发送消息的代码,中的在于"\r\n"的拼接,否则在java端的程序,无法知道你发过来的信息是否结束,当然你也可以使用其他的方式来读取客户端,比如定时;但是我在java端写的server是readLine来判断的,所以需要拼接这个\r\n.
其他的代码除了asyncSocket代理外都是我们所熟悉的。
- (void)onSocket:(AsyncSocket *)sock didConnectToHost:(NSString *)host port:(UInt16)port{ [client readDataWithTimeout:-1 tag:0]; } - (void)onSocket:(AsyncSocket *)sock willDisconnectWithError:(NSError *)err { NSLog(@"Error"); } - (void)onSocketDidDisconnect:(AsyncSocket *)sock { NSString *msg = @"Sorry this connect is failure"; [self showMessage:msg]; [msg release]; client = nil; } - (void)onSocketDidSecure:(AsyncSocket *)sock{ } - (void)onSocket:(AsyncSocket *)sock didReadData:(NSData *)data withTag:(long)tag{ NSString* aStr = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]; NSLog(@"Hava received datas is :%@",aStr); self.outputMsg.text = aStr; [aStr release]; [client readDataWithTimeout:-1 tag:0]; }
到此就结束了。
其他要说的,明天再完善吧。
相关推荐
Python异步Socket编程代码,对想学习python socket的人有用
本文将详细介绍如何使用`AsyncSocket`库进行异步Socket编程,该库是由Mike Ash开发的一个强大的Objective-C类,它使得在iOS应用中处理网络通信变得简单易行。 `AsyncSocket`库提供了异步的TCP套接字操作,能够同时...
异步套接字(AsyncSocket)是Microsoft MFC(Microsoft Foundation Classes)...在提供的压缩包文件"asyncsocket"中,可能包含了示例代码、教程文档或者其他相关资源,可以帮助初学者更好地理解和实践异步套接字编程。
8. **社区支持**:作为开源项目,AsyncSocket拥有活跃的社区和开发者支持,遇到问题时可以寻求社区帮助,或者查看官方文档和示例代码来解决。 9. **版本更新**:描述中提到的是7.4.2版本,这个版本可能包含了一些...
"ios-Socket通信.zip"这个压缩包可能包含了关于如何在iOS平台上使用AsyncSocket库进行Socket通信的示例代码和教程。AsyncSocket是由GCD(Grand Central Dispatch)实现的一个异步Socket库,它简化了Socket编程的复杂...
包含的"socket测试代码"很可能是为了演示如何使用`AsyncSocket`创建客户端连接,发送和接收数据。具体代码分析如下: ```swift class SocketManager: NSObject, AsyncSocketDelegate { let socket = AsyncSocket...
总的来说,这个基于AsyncSocket的聊天室程序展示了如何使用MFC和Winsock进行网络编程,实现了多用户间的实时聊天功能。对于学习网络编程和C++ MFC的开发者来说,这是一个很好的实践项目,能够帮助他们深入理解异步套...
总结来说,"iphone asyncsocket"项目展示了如何在iOS应用中使用AsyncSocket库实现服务器和客户端的通信。通过异步套接字编程,开发者可以在iPhone应用中轻松地处理网络数据流,提供稳定且高效的网络服务。无论是构建...
iOS socket编程 asyncsocket
在IT行业中,网络通信是不可或缺的一部分,而Socket编程则是实现客户端和服务器端之间通信的核心技术。本项目聚焦于"AsyncSocket服务端及用户端",它利用了Objective-C中的AsyncSocket库来构建一个高效的网络通信...
Swift编程语言中,AsyncSocket库通常用于处理TCP连接,但其实它也支持UDP(User Datagram Protocol)通信。本文将深入探讨如何使用AsyncSocket在Swift中建立UDP套接字连接,并结合提供的AsyncUdpSocket.h和...
总之,AsyncSocket是iOS开发者进行Socket编程的强大工具,它简化了网络通信的实现,提高了代码的可维护性和性能。通过理解和熟练使用AsyncSocket,开发者能够更高效地开发出需要网络交互的iOS应用。
2. **Socket编程**:掌握TCP/IP协议族的基本概念,了解如何使用Berkeley Sockets API(在Windows中是Winsock)创建和管理套接字。这包括socket()函数创建套接字,bind()绑定本地端口,listen()监听连接请求,accept...
在C#中,使用AsyncSocket进行网络编程时,开发者通常会创建一个Socket实例,并通过BeginConnect或BeginAccept方法启动异步连接或监听过程。一旦连接建立,可以使用BeginReceive和BeginSend方法进行数据的发送和接收...
AsyncSocket是Mac OS X和iOS平台上用于网络编程的一个重要组件,它是Cocoa框架的一部分,提供了一种异步处理TCP套接字通信的方式。这个标题"AsyncSocket服务端,客户端"表明我们将探讨如何使用AsyncSocket来创建一个...
在提供的文件列表中,有一个名为“0104Socket副本”的文件,这可能是一个示例代码或者教程文档,包含了如何使用`AsyncSocket`进行Socket编程的具体步骤和示例。通过分析这个文件,开发者可以深入理解如何在Objective...
AsyncSocket是iOS和macOS平台上的一个开源网络通信库,由CocoaAsyncSocket项目提供,它使得开发者可以方便地在Objective-C或Swift中处理TCP套接字通信。这个库特别适用于需要进行异步数据传输的应用,例如即时通讯、...