在android系统使用socket在java层和native之间数据通信

在android系统使用socket在java层和native之间数据通信

ID:16923337

大小:19.00 KB

页数:3页

时间:2018-08-25

在android系统使用socket在java层和native之间数据通信_第1页
在android系统使用socket在java层和native之间数据通信_第2页
在android系统使用socket在java层和native之间数据通信_第3页
资源描述:

《在android系统使用socket在java层和native之间数据通信》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库

1、在Android系统使用socket在Java层和native之间数据通信Android是基于linux的系统,系统底层机制基本上是相同的,因为分本地代码和java代码,并且是java代码通过jni调用本地代码执行。因为UDP报文发送是有局限的,局限就是当发送方的速度远远的超过接受方的时候,底层会大量的丢失数据,而且用UDP还会比较容易引起端口的阻塞,因此需要更加强大的类来实现类似的功能。LocalServerSocket和LocalSocket正是在这样的情况下产生的,是以UNIX空间为缓冲区来进行

2、数据的存储的.实例一:Native本地代码作客户端发送请求,Java端作服务器端创建socket,并监听处理socket请求:importandroid.net.LocalServerSocket;importandroid.net.LocalSocket;classSocketListenerextendsThread{@Overridepublicvoidrun(){try{LocalServerSocketserver=newLocalServerSocket("com.jenny.vnc.lo

3、calsocket");while(true){LocalSocketreceiver=server.accept();if(receiver!=null){InputStreaminput=receiver.getInputStream();intreaded=input.read();...........//handleotherstaffoftheCentre.Duringthewar,ZhuwastransferredbacktoJiangxi,andDirectorofthenewOffi

4、ceinJingdezhen,JiangxiCommitteeSecretary.Startingin1939servedasrecorderoftheWestNorthOrganization,SecretaryoftheSpecialCommitteeAfterthevictoryofthelongMarch,hehasbeentheNorthwestOfficeoftheFederationofStateenterprisesMinister,ShenmufuguSARmissions,Dire

5、ctorofNingxiaCountypartyCommitteeSecretaryandrecorderoftheCountypartyCommitteeSecretary,Ministersand}}server.close();}catch(IOExceptione){Log.e(getClass().getName(),e.getMessage());}}}JNI的Native端代码做客户端:#includevoidsend_remote_request(char*

6、msg){intlocalsocket,len;structsockaddr_unremote;if((localsocket=socket(AF_UNIX,SOCK_STREAM,0))==-1){exit(1);}char*name="com.jenny.vnc.localsocket";//与java上层相同哦remote.sun_path[0]='';/*abstractnamespace*/strcpy(remote.sun_path+1,name);remote.sun_family=

7、AF_UNIX;intnameLen=strlen(name);len=1+nameLen+offsetof(structsockaddr_un,sun_path);if(connect(localsocket,(structsockaddr*)&remote,len)==-1){return;}if(send(localsocket,msg,strlen(msg),0)==-1){return;}otherstaffoftheCentre.Duringthewar,Zhuwastransferred

8、backtoJiangxi,andDirectorofthenewOfficeinJingdezhen,JiangxiCommitteeSecretary.Startingin1939servedasrecorderoftheWestNorthOrganization,SecretaryoftheSpecialCommitteeAfterthevictoryofthelongMarch,hehasbeentheNorthwestOfficeoftheFe

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。