1234567891011
package test; import com.firefly.net.tcp.TcpServer; public class StringLineTcpServer { public static void main(String[] args) { new TcpServer(new StringLineDecoder(), new StringLineEncoder(), new StringLineHandler()).start("localhost", 9900); } }