xSocket是一个易于使用的基于NIO库来构建高性能,可扩展的网络应用。它支持写入以及服务器端的应用,以直观的方式客户端应用程序。检测问题,如低水平NIO选择编程,连接池管理,连接超时被封装的xSocket。
我从它的官网上面下载了两个JAR一个是其核心JAR包xSocket (core)
另外一个JAR包是:xSocket multiplexed
先掌握其core部分然后再去学习其扩展部分的功能!
随着xSocket你可以编写高性能,可扩展的客户端和服务器组件的自定义协议如SMTP服务器,代理服务器或客户端和服务器组件是一个基于。
IDataHandler :服务端或者客户端端数据处理类;
IConnectHandler 服务端或者客户端连接成功是处理操作。
IIdleTimeoutHandler 请求处理超时才操作。
IConnectionTimeoutHandler连接超时的操作
IDisconnectHandler 连接断开时的操作
IBlockingConnection阻塞模式的连接
INonblockingConnection 非阻塞模式的连接
XSocket的ongoing实例:
服务端数据处理类:
- packagecom.easyway.space.sockets.xsocket;
- importjava.io.IOException;
- importjava.nio.BufferUnderflowException;
- importjava.nio.channels.ClosedChannelException;
- importorg.xsocket.MaxReadSizeExceededException;
- importorg.xsocket.connection.IConnectHandler;
- importorg.xsocket.connection.IConnectionTimeoutHandler;
- importorg.xsocket.connection.IDataHandler;
- importorg.xsocket.connection.IDisconnectHandler;
- importorg.xsocket.connection.IIdleTimeoutHandler;
- importorg.xsocket.connection.INonBlockingConnection;
- publicclassServerHandlerimplementsIDataHandler,IConnectHandler,IIdleTimeoutHandler,IConnectionTimeoutHandler,IDisconnectHandler{
- @Override
- publicbooleanonConnect(INonBlockingConnectionnbc)throwsIOException,
- BufferUnderflowException,MaxReadSizeExceededException{
- StringremoteName=nbc.getRemoteAddress().getHostName();
- System.out.println("服务器信息 : 客户端 " + remoteName + " 已经连接...");
- returntrue;
- }
- @Override
- publicbooleanonDisconnect(INonBlockingConnectionnbc)throwsIOException{
-
// String remoteName=nbc.getRemoteAddress().getHostName();
// System.out.println("服务器信息:客户端 "+remoteName+" 已经断开.");
- returnfalse;
- }
- @Override
- publicbooleanonData(INonBlockingConnectionnbc)throwsIOException,
- BufferUnderflowException,ClosedChannelException,
- MaxReadSizeExceededException{
- Stringdata=nbc.readStringByDelimiter("|");
- nbc.write("--|server:receivedatafromclientsucessful|-----");
- nbc.flush();
- System.out.println(data);
- returntrue;
- }
- @Override
- publicbooleanonIdleTimeout(INonBlockingConnectionconnection)throwsIOException{
- returnfalse;
- }
- @Override
- publicbooleanonConnectionTimeout(INonBlockingConnectionconnection)throwsIOException{
- returnfalse;
- }
- }
服务端类:
- packagecom.easyway.space.sockets.xsocket;
- importjava.net.InetAddress;
- importjava.util.Map;
- importjava.util.Map.Entry;
- importorg.xsocket.connection.IServer;
- importorg.xsocket.connection.Server;
- importorg.xsocket.connection.IConnection.FlushMode;
- publicclassXSocketServer{
- privatestaticfinalintPORT=8014;
- publicstaticvoidmain(String[]args)throwsException{
- InetAddressaddress=InetAddress.getByName("localhost");
- IServersrv=newServer(address,PORT,newServerHandler());
- srv.setFlushmode(FlushMode.ASYNC);
- try{
- srv.start();
- System.out.println("服务器"+srv.getLocalAddress()+":"+PORT);
- Map<String,Class>maps=srv.getOptions();
- if(maps!=null){
- for(Entry<String,Class>entry:maps.entrySet()){
- System.out.println("key="+entry.getKey()+"value="+entry.getValue().getName());
- }
- }
- System.out.println("日志:"+srv.getStartUpLogMessage());
- }catch(Exceptione){
- System.out.println(e);
- }
- }
- }
客户端数据处理类:
- packagecom.easyway.space.sockets.xsocket;
- importjava.io.IOException;
- importjava.nio.BufferUnderflowException;
- importjava.nio.channels.ClosedChannelException;
- importorg.xsocket.MaxReadSizeExceededException;
- importorg.xsocket.connection.IConnectHandler;
- importorg.xsocket.connection.IDataHandler;
- importorg.xsocket.connection.IDisconnectHandler;
- importorg.xsocket.connection.INonBlockingConnection;
- publicclassClientHandlerimplementsIDataHandler,IConnectHandler,IDisconnectHandler{
- @Override
- publicbooleanonConnect(INonBlockingConnectionnbc)throwsIOException,
- BufferUnderflowException,MaxReadSizeExceededException{
- StringremoteName=nbc.getRemoteAddress().getHostName();
- System.out.println("remoteName"+remoteName+"hasconnected!");
- returntrue;
- }
- @Override
- publicbooleanonDisconnect(INonBlockingConnectionnbc)throwsIOException{
- returnfalse;
- }
- @Override
- publicbooleanonData(INonBlockingConnectionnbc)throwsIOException,
- BufferUnderflowException,ClosedChannelException,
- MaxReadSizeExceededException{
- Stringdata=nbc.readStringByDelimiter("|");
- nbc.write("--|Client:receivedatafromserversucessful|-----");
- nbc.flush();
- System.out.println(data);
- returntrue;
- }
- }
客户端类:
- packagecom.easyway.space.sockets.xsocket;
- importjava.io.IOException;
- importorg.xsocket.connection.BlockingConnection;
- importorg.xsocket.connection.IBlockingConnection;
- importorg.xsocket.connection.INonBlockingConnection;
- importorg.xsocket.connection.NonBlockingConnection;
- publicclassXSocketClient{
- privatestaticfinalintPORT=8014;
- publicstaticvoidmain(String[]args)throwsIOException{
- INonBlockingConnectionnbc=newNonBlockingConnection("localhost",PORT,newClientHandler());
- IBlockingConnectionbc=newBlockingConnection(nbc);
- bc.setEncoding("UTF-8");
- bc.setAutoflush(true);
- for(inti=0;i<100;i++){
- bc.write("client|i|love|china!..."+i);
- }
- byte[]byteBuffers=bc.readBytesByDelimiter("|","UTF-8");
- System.out.println(newString(byteBuffers));
- bc.flush();
- bc.close();
- }
- }
分享到:
相关推荐
总之,这个资源包为你提供了一个很好的学习平台,通过实践和研究源码,你将能够深入理解Socket和XSocket编程,进一步提升你的网络编程技能。记得要结合理论知识和实际操作,才能更好地消化和掌握这些内容。
xSocket api 2.6.6version
NIO网络框架 xSocket
xsocket NIO框架示例 resources 中有相关的 资料。telnet服务测试教程。和相关jar
总结来说,这个压缩包提供的示例可能包括了如何使用xsocket和xlightweb库在服务器端和客户端实现WebSocket通信的具体代码。通过学习这些示例,开发者可以更好地理解WebSocket的工作原理,以及如何在实际项目中应用这...
"tcp协议使用xsocket的demo"是一个实践性强、教学价值高的项目,它涵盖了SpringBoot、TCP通信和模块化开发等多个核心知识点,对于想要深入了解Java网络编程和SpringBoot集成的开发者来说,这是一个极好的学习资源。
xSocket-2.5.4-sources.jar , 2.5.4版的源代码jar包,引入项目即可查看
总的来说,XSocket.rar文件提供了关于Socket编程、TCP/IP协议实现、客户端和服务器端交互以及多播功能的实战示例,对于学习和开发网络通信应用的程序员来说,这是一个宝贵的资源。通过研究这个项目,开发者可以深入...
socket通讯框架xsocket所需的jar包
下面是 xSocket 的一些核心功能和使用指南: 核心功能 xSocket 的核心功能支持面向流通信,主要抽象是 Connection 接口。通过 IBlockingConnection 或者 INonblockingConnection 对象进行数据的读写。在 record ...
xSocket是一个轻量级的基于nio的服务器框架用于开发高性能、可扩展、多线程的服务器。该框架封装了线程处理、异步读/写等方面。
轻量级JAVA scoket 服务器XSOCKET
Java NIO(New Input/Output)网络框架是一...通过学习和使用xSocket框架,开发者可以更好地理解和应用Java NIO,创建出高效、可靠的网络应用程序。在实际开发中,结合NIO的特性,可以显著提升网络应用的性能和稳定性。
它通过抽象出统一的API,隐藏了底层操作系统差异,降低了开发者的学习曲线和维护成本。 XSocket的核心特性在于其对Socket操作的封装。在C语言原生的Socket API中,开发者需要处理许多低级别的细节,如错误检查、套...
提到的三个文件分别代表了xSocket的不同版本:`xSocket-2.1.2-sources.jar` 包含的是2.1.2版本的源代码,这对于学习和调试非常有用;`xSocket-2.7.2.jar` 可能是一个更新的二进制版本,可能包含了更多的功能和优化...
3. 文档资料:包含了框架的使用指南、API文档以及设计原理等,帮助开发者更好地学习和使用xSocket。 4. 测试用例:验证框架功能的正确性,可作为开发过程中参考和调试的依据。 5. 配置文件:可能包含服务器配置、...
基于java的开发源码-NIO网络框架 xSocket.zip 基于java的开发源码-NIO网络框架 xSocket.zip 基于java的开发源码-NIO网络框架 xSocket.zip 基于java的开发源码-NIO网络框架 xSocket.zip 基于java的开发源码-NIO网络...
xSocket-multiplexed-2.1.5-sources.jarxSocket-multiplexed-2.1.5-sources.jarxSocket-multiplexed-2.1.5-sources.jarxSocket-multiplexed-2.1.5-sources.jarxSocket-multiplexed-2.1.5-sources.jarxSocket-...