使用Mina架構開發QQ Android 用戶端(2) 用戶端與服務端的通訊

來源:互聯網
上載者:User

一個簡單的例子,對Mina架構有了大體的瞭解,在上節的基礎上,看看 怎樣實現用戶端與服務端的通訊,

廢話不多說了,直接看代碼:

public class Test {            public static void main(String[] args) throws Exception{          SocketConnector connector = new NioSocketConnector();          IoFilter filter = new ProtocolCodecFilter(new TextLineCodecFactory());          connector.getFilterChain().addLast("vestigge", filter);          SocketAddress soketAddress = new InetSocketAddress("127.0.0.1", 5469);          connector.setHandler(new ClientHandler());          ConnectFuture future= connector.connect(soketAddress);          future.join();          if (!future.isConnected()) {              System.out.println("串連伺服器失敗");              return;          }          future.getSession().write("hello");      }  }

可以看到代碼與伺服器端的代碼很像,也是非常的簡單,這就是架構的好處,不用再重複發明輪子,省了不少事,

public class ClientHandler extends IoHandlerAdapter {                public void messageReceived(IoSession arg0, Object message) throws Exception {          System.out.println("收到伺服器訊息:" + message.toString());      }            public void exceptionCaught(IoSession arg0, Throwable arg1)              throws Exception {            }  }

效果示範:

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.