预览加载中,请您耐心等待几秒...
1/10
2/10
3/10
4/10
5/10
6/10
7/10
8/10
9/10
10/10

亲,该文档总共16页,到这已经超出免费预览范围,如果喜欢就直接下载吧~

如果您无法下载资料,请参考说明:

1、部分资料下载需要金币,请确保您的账户上有足够的金币

2、已购买过的文档,再次下载不重复扣费

3、资料包下载后请先用软件解压,在使用对应软件打开

第十五章本章内容URLjava.net.URL类URL类应用举例(1)URL类应用举例(2)SocketSocket通信模型网络编程的四个基本步骤创建socket客户端Socket的建立 try{ Socketsocket=newSocket(”127.0.0.1",2000); }catch(IOExceptione){ System.out.println("Error:"+e); } 服务器端Socket的建立 ServerSocketserver=null; try{ server=newServerSocket(2000); }catch(IOExceptione){ System.out.println("cannotlistento:"+e); } Socketsocket=null; try{ socket=server.accept(); }catch(IOExceptione){ System.out.println("Error:"+e); }打开输入/出流 PrintStreamos=newPrintStream(new BufferedOutputStream(socket.getOutputStream())); DataInputStreamis=newDataInputStream(socket.getInputStream()); 关闭Socket os.close(); is.close(); socket.close(); 简单的client/server程序简单的client/server程序本章内容