Java Socket通讯如何进行客户端的配置呢?其实我们在不断学习中会遇到很多问题,下面我们就看看如何才能更好的编写代码。再让我们来看看客户端的代码是怎么样的:
客户端代码:Jclient1.mxml
Java Socket通讯代码
- <?xml version="1.0" encoding="utf-8"?>
- <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" creati f width="349" height="326">
- <mx:Script>
- <![CDATA[
- import flash.net.Socket;
- private var socket:Socket;
- internal function initApp():void
- {
- socket=new Socket();//创建Socket对象
- socket.connect("localhost",719); //连接服务器
- socket.addEventListener(Event.CONNECT,connectFun);//监听是否连接上服务器
- socket.addEventListener(Event.CLOSE,closeFun);//监听套接字连接是否关闭
- }
- private function connectFun(event:Event):void
- {
- jText.text+="已经成功连接到服务器!\n";
- }
- private function closeFun(event:Event):void
- {
- jText.text+="和服务器断开!\n"
- }
- ]]>
- </mx:Script>
- <mx:TextArea x="10" y="10" width="327" height="309" id="jText"/>
- </mx:Application>
以上就是对Java Socket通讯的详细介绍。
【编辑推荐】