假如你也是一个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。这样基本准备工作就做好了。

下面提供我的应用中的代码以及界面图:

  1. //
  2. //  SocketDemoViewController.h
  3. //  SocketDemo
  4. //
  5. //  Created by xiang xiva on 10-7-10.
  6. //  Copyright 2010 __MyCompanyName__. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "AsyncSocket.h"
  10. #define SRV_CONNECTED 0
  11. #define SRV_CONNECT_SUC 1
  12. #define SRV_CONNECT_FAIL 2
  13. #define HOST_IP @"192.168.110.1"
  14. #define HOST_PORT 8080
  15. @interface SocketDemoViewController : UIViewController {
  16. UITextField *inputMsg;
  17. UILabel *outputMsg;
  18. AsyncSocket *client;
  19. }
  20. @property (nonatomic, retain) AsyncSocket *client;
  21. @property (nonatomic, retain) IBOutlet UITextField *inputMsg;
  22. @property (nonatomic, retain) IBOutlet UILabel *outputMsg;
  23. - (int) connectServer: (NSString *) hostIP port:(int) hostPort;
  24. - (void) showMessage:(NSString *) msg;
  25. - (IBAction) sendMsg;
  26. - (IBAction) reConnect;
  27. - (IBAction) textFieldDoneEditing:(id)sender;
  28. - (IBAction) backgroundTouch:(id)sender;
  29. @end
  1. //
  2. //  SocketDemoViewController.m
  3. //  SocketDemo
  4. //
  5. //  Created by xiang xiva on 10-7-10.
  6. //  Copyright 2010 __MyCompanyName__. All rights reserved.
  7. //
  8. #import "SocketDemoViewController.h"
  9. @implementation SocketDemoViewController
  10. @synthesize inputMsg, outputMsg;
  11. @synthesize client;
  12. /*
  13. // The designated initializer. Override to perform setup that is required before the view is loaded.
  14. - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
  15. self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
  16. if (self) {
  17. // Custom initialization
  18. }
  19. return self;
  20. }
  21. */
  22. /*
  23. // Implement loadView to create a view hierarchy programmatically, without using a nib.
  24. - (void)loadView {
  25. }
  26. */
  27. // Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
  28. - (void)viewDidLoad {
  29. //[super viewDidLoad];
  30. [self connectServer:HOST_IP port:HOST_PORT];
  31. //监听读取
  32. }
  33. // Override to allow orientations other than the default portrait orientation.
  34. - (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
  35. return YES;
  36. }
  37. - (void)didReceiveMemoryWarning {
  38. // Releases the view if it doesn't have a superview.
  39. [super didReceiveMemoryWarning];
  40. // Release any cached data, images, etc that aren't in use.
  41. }
  42. - (void)viewDidUnload {
  43. self.client = nil;
  44. // Release any retained subviews of the main view.
  45. // e.g. self.myOutlet = nil;
  46. }
  47. - (int) connectServer: (NSString *) hostIP port:(int) hostPort{
  48. if (client == nil) {
  49. client = [[AsyncSocket alloc] initWithDelegate:self];
  50. NSError *err = nil;
  51. //192.168.110.128
  52. if (![client connectToHost:hostIP onPort:hostPort error:&err]) {
  53. NSLog(@"%@ %@", [err code], [err localizedDescription]);
  54. UIAlertView *alert = [[UIAlertView alloc] initWithTitle:[@"Connection failed to host "
  55. stringByAppendingString:hostIP]
  56. message:[[[NSString alloc]initWithFormat:@"%@",[err code]] stringByAppendingString:[err localizedDescription]]
  57. delegate:self
  58. cancelButtonTitle:@"OK"
  59. otherButtonTitles:nil];
  60. [alert show];
  61. [alert release];
  62. //client = nil;
  63. return SRV_CONNECT_FAIL;
  64. } else {
  65. NSLog(@"Conectou!");
  66. return SRV_CONNECT_SUC;
  67. }
  68. }
  69. else {
  70. [client readDataWithTimeout:-1 tag:0];
  71. return SRV_CONNECTED;
  72. }
  73. }
  74. - (IBAction) reConnect{
  75. int stat = [self connectServer:HOST_IP port:HOST_PORT];
  76. switch (stat) {
  77. case SRV_CONNECT_SUC:
  78. [self showMessage:@"connect success"];
  79. break;
  80. case SRV_CONNECTED:
  81. [self showMessage:@"It's connected,don't agian"];
  82. break;
  83. default:
  84. break;
  85. }
  86. }
  87. - (IBAction) sendMsg{
  88. NSString *inputMsgStr = self.inputMsg.text;
  89. NSString * content = [inputMsgStr stringByAppendingString:@"\r\n"];
  90. NSLog(@"%a",content);
  91. NSData *data = [content dataUsingEncoding:NSISOLatin1StringEncoding];
  92. [client writeData:data withTimeout:-1 tag:0];
  93. //[data release];
  94. //[content release];
  95. //[inputMsgStr release];
  96. //继续监听读取
  97. //[client readDataWithTimeout:-1 tag:0];
  98. }
  99. #pragma mark -
  100. #pragma mark close Keyboard
  101. - (IBAction) textFieldDoneEditing:(id)sender{
  102. [sender resignFirstResponder];
  103. }
  104. - (IBAction) backgroundTouch:(id)sender{
  105. [inputMsg resignFirstResponder];
  106. }
  107. #pragma mark socket uitl
  108. - (void) showMessage:(NSString *) msg{
  109. UIAlertView * alert = [[UIAlertView alloc]initWithTitle:@"Alert!"
  110. message:msg
  111. delegate:nil
  112. cancelButtonTitle:@"OK"
  113. otherButtonTitles:nil];
  114. [alert show];
  115. [alert release];
  116. }
  117. #pragma mark socket delegate
  118. - (void)onSocket:(AsyncSocket *)sock didConnectToHost:(NSString *)host port:(UInt16)port{
  119. [client readDataWithTimeout:-1 tag:0];
  120. }
  121. - (void)onSocket:(AsyncSocket *)sock willDisconnectWithError:(NSError *)err
  122. {
  123. NSLog(@"Error");
  124. }
  125. - (void)onSocketDidDisconnect:(AsyncSocket *)sock
  126. {
  127. NSString *msg = @"Sorry this connect is failure";
  128. [self showMessage:msg];
  129. [msg release];
  130. client = nil;
  131. }
  132. - (void)onSocketDidSecure:(AsyncSocket *)sock{
  133. }
  134. - (void)onSocket:(AsyncSocket *)sock didReadData:(NSData *)data withTag:(long)tag{
  135. NSString* aStr = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
  136. NSLog(@"Hava received datas is :%@",aStr);
  137. self.outputMsg.text = aStr;
  138. [aStr release];
  139. [client readDataWithTimeout:-1 tag:0];
  140. }
  141. #pragma mark dealloc
  142. - (void)dealloc {
  143. [client release];
  144. [inputMsg release];
  145. [outputMsg release];
  146. [super dealloc];
  147. }
  148. @end

还是先给出我的界面吧,否则很难懂这些代码

这样大家满意了吧!

好了说了这么多我们还是来看看代码究竟怎么回事吧。

首先从头文件开始看吧,

1,导入头文件#import "AsyncSocket.h",然后是一些宏

2,声明一个AsyncSocket对象,其他就是一些IBoutlet

再次我们看看视图加载,

  1. - (void)viewDidLoad {
  2. //[super viewDidLoad];
  3. [self connectServer:HOST_IP port:HOST_PORT];
  4. //监听读取
  5. }

显然我们调用了connectServer::这个方法。

在这个方法中,首先初始化我们的对象,使用代理的方式。对象显示是self。然后我们便需在我们的类中实现它的各种方法,来得到各种我们想得到的。

client = [[AsyncSocket alloc] initWithDelegate:self];

下面就是连接服务器了,

[client connectToHost:hostIP onPort:hostPort error:&err]

并且当client不为空时,我们就读取服务器的信息

[client readDataWithTimeout:-1 tag:0];

  1. - (void)onSocket:(AsyncSocket *)sock didReadData:(NSData *)data withTag:(long)tag{
  2. NSString* aStr = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
  3. NSLog(@"Hava received datas is :%@",aStr);
  4. self.outputMsg.text = aStr;
  5. [aStr release];
  6. [client readDataWithTimeout:-1 tag:0];
  7. }

在这个方法中很耐人寻味,主要就是在于递归的调用。

  1. - (IBAction) sendMsg{
  2. NSString *inputMsgStr = self.inputMsg.text;
  3. NSString * content = [inputMsgStr stringByAppendingString:@"\r\n"];
  4. NSLog(@"%a",content);
  5. NSData *data = [content dataUsingEncoding:NSISOLatin1StringEncoding];
  6. [client writeData:data withTimeout:-1 tag:0];
  7. }

我们在看看上面发送消息的代码,中的在于"\r\n"的拼接,否则在java端的程序,无法知道你发过来的信息是否结束,当然你也可以使用其他的方式来读取客户端,比如定时;但是我在java端写的server是readLine来判断的,所以需要拼接这个\r\n.

其他的代码除了asyncSocket代理外都是我们所熟悉的。

  1. - (void)onSocket:(AsyncSocket *)sock didConnectToHost:(NSString *)host port:(UInt16)port{
  2. [client readDataWithTimeout:-1 tag:0];
  3. }
  4. - (void)onSocket:(AsyncSocket *)sock willDisconnectWithError:(NSError *)err
  5. {
  6. NSLog(@"Error");
  7. }
  8. - (void)onSocketDidDisconnect:(AsyncSocket *)sock
  9. {
  10. NSString *msg = @"Sorry this connect is failure";
  11. [self showMessage:msg];
  12. [msg release];
  13. client = nil;
  14. }
  15. - (void)onSocketDidSecure:(AsyncSocket *)sock{
  16. }
  17. - (void)onSocket:(AsyncSocket *)sock didReadData:(NSData *)data withTag:(long)tag{
  18. NSString* aStr = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
  19. NSLog(@"Hava received datas is :%@",aStr);
  20. self.outputMsg.text = aStr;
  21. [aStr release];
  22. [client readDataWithTimeout:-1 tag:0];
  23. }

到此就结束了。

iOS Socket第三方开源类库 ----AsyncSocket的更多相关文章

  1. iOS Socket第三方开源类库 ----AsyncSocket 分类: ios相关 ios技术 2015-03-11 22:14 59人阅读 评论(0) 收藏

    假如你也是一个java程序员,而你又不是很懂Socket. 下面我的这篇文章也许能帮助你一些. http://xiva.iteye.com/blog/993336 首先我们写好上面文章中的server ...

  2. IOS常用第三方开源类库&组件

    1.AFNetworking AFNetworking 采用 NSURLConnection + NSOperation, 主要方便与服务端 API 进行数据交换, 操作简单, 功能强大, 现在许多人 ...

  3. 使用CocoaPods管理第三方开源类库

    iOS开发中经常会用到许多第三方开源类库,比如AFNetworking.FMDB.JSONKit等等,使用CocoaPods这个工具就能很方便得对工程中用到的类库进行管理,包括自动下载配置以及更新. ...

  4. iOS常用第三方开源框架和优秀开发者博客等

    博客收藏iOS开发过程好的开源框架.开源项目.Xcode工具插件.Mac软件.文章等,会不断更新维护,希望对你们有帮助.如果有推荐或者建议,请到此处提交推荐或者联系我. 该文档已提交GitHub,点击 ...

  5. iOS - CocoaPods 第三方开源框架管理

    1.CocoaPods CocoaPods 是一个负责管理 iOS 项目中第三方开源库的工具.CocoaPods 的项目源码在 Github 上管理.该项目开始于 2011 年 8 月 12 日,在这 ...

  6. [IOS A] - 一些开源类库

    因 为iOS SDK相对比较底层,所以开发者就得受累多做一些体力活.不过幸运的是,有很多第三方的类库可以用来简化很多不必要的工作.笔者整理了一下在本人学习过程 中用到的一些比较有用Objective- ...

  7. iOS常用的开源类库

    开发几个常用的开源类库及下载地址: 引用 1.json json编码解码 2.GTMBase64 base64编码解码 3.TouchXML xml解析 4.SFHFKeychainUtils 安全保 ...

  8. iOS socket编程 第三方库 AsyncSocket(GCDAsyncSocket)

    Socket描述了一个IP.端口对.它简化了程序员的操作,知道对方的IP以及PORT就可以给对方发送消息,再由服务器端来处理发送的这些消息.所以,Socket一定包含了通信的双发,即客户端(Clien ...

  9. 最全面的iOS和Mac开源项目和第三方库汇总

    标签: UI 下拉刷新 EGOTableViewPullRefresh – 最早的下拉刷新控件. SVPullToRefresh – 下拉刷新控件. MJRefresh – 仅需一行代码就可以为UIT ...

随机推荐

  1. 指针--摘自C++技术网 作者dx

    “指针是什么?”“指针就是一种数据类型.”“你确定?”“那数据类型是什么?额,这个???类型就是类型,还能怎么解释嘛.”“指针有多少种?”“指针有好多种,比如整型指针,字符指针等等.”“指针是怎么确定 ...

  2. HDU 3861 The King’s Problem(tarjan连通图与二分图最小路径覆盖)

    题意:给我们一个图,问我们最少能把这个图分成几部分,使得每部分内的任意两点都能至少保证单向连通. 思路:使用tarjan算法求强连通分量然后进行缩点,形成一个新图,易知新图中的每个点内部的内部点都能保 ...

  3. pur-ftpd在ubuntu上的安装

    1.安装 apt-get install pure-ftpd 2.建立ftp目录 /var/ftp/public 3.建立ftp用户组 groupadd ftpgroup 4.建立ftp非系统用户 u ...

  4. MYSQL数据库的套接字文件,pid文件,表结构文件

    socket文件:当用Unix域套接字方式进行连接时需要的文件. pid文件:MySQL实例的进程ID文件. MySQL表结构文件:用来存放MySQL表结构定义文件. 套接字文件 Unix系统下本地连 ...

  5. HDU 3726 Graph and Queries 平衡树+前向星+并查集+离线操作+逆向思维 数据结构大综合题

    Graph and Queries Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Other ...

  6. Mysql程序

    drop table if exists comp_ap; create table comp_ap as select ProjectName, ModelCode, 'AP_ACMClosed' ...

  7. iis7支持asp(访问页面,页面存在仍然提示404)

    1. win7下安装IIS时ASP一般被默认不选中的状态,因此需要打开IIS检查功能视图栏中是否存在ASP选项,若没有则需要从控制面板->程序和 功能->打开或关闭Windows功能-&g ...

  8. C# 经典入门15章 RichTextBox

    aaarticlea/png;base64,iVBORw0KGgoAAAANSUhEUgAAAsEAAAIRCAIAAAAk7fcMAAAgAElEQVR4nOy9+SOU3/////pHuswYyz

  9. java.lang.RuntimeException: java.lang.NoSuchMethodException:

    [java] 15/12/19 14:09:46 INFO mapred.JobClient: Task Id : attempt_201512182036_0017_m_000000_0, Stat ...

  10. mysql查询的cache

    Mysql SQL_NO_CACHE不生效的问题 贾春春 1 票 1224 我想通过SQL_NO_CACHE得知某个query查询速度,但似乎无法实现 例如首次查询: mysql> select ...