424344454647484950
// Create TCP/IP connector. SocketConnector connector = new SocketConnector(); // Start communication. connector.connect( new InetSocketAddress( args[ 0 ], Integer .parseInt( args[ 1 ] ) ), 60, new NetCatProtocolHandler() ); } }