Java精解案例教程 第15课网络编程.ppt

上传人:s****8 文档编号:67277663 上传时间:2022-12-24 格式:PPT 页数:16 大小:43.50KB
返回 下载 相关 举报
Java精解案例教程 第15课网络编程.ppt_第1页
第1页 / 共16页
Java精解案例教程 第15课网络编程.ppt_第2页
第2页 / 共16页
点击查看更多>>
资源描述

《Java精解案例教程 第15课网络编程.ppt》由会员分享,可在线阅读,更多相关《Java精解案例教程 第15课网络编程.ppt(16页珍藏版)》请在taowenge.com淘文阁网|工程机械CAD图纸|机械工程制图|CAD装配图下载|SolidWorks_CaTia_CAD_UG_PROE_设计图分享下载上搜索。

1、第第十五十五章章网络编程网络编程 本章内容本章内容使用使用包中的类在程序中实现网络通信包中的类在程序中实现网络通信URL类及其用法类及其用法Socket通信通信URLURL(Uniform Resource Locator)-统一资源定位器,表示Internet上某一资源的地址。URL组成:协议名和资源名protocol:resourceNameURL举例:http:/ URL(String spec);URL u1=new URL(“http:/ URL(URL context,String spec);URL u2=new URL(u1,“welcome.html”);public URL

2、(String protocol,String host,String file);URL u3=new URL(“http”,“”,“developers/index.html”);public URL(String protocol,String host,int port,String file);URL u4=new URL(“http”,“”,80,“developers/index.html”);URL类应用举例(1)import java.io.*;import .*;public class URLReaderpublic static void main(String arg

3、s)tryURL tirc=new URL(http:/ in=new BufferedReader(new InputStreamReader(tirc.openStream();String s;while(s=in.readLine()!=null)System.out.println(s);in.close();catch(MalformedURLException e)System.out.println(e);catch(IOException e)System.out.println(e);URL类应用举例(2)程序URLReader.java输出结果:清华大学网站首页清华大学网

4、站首页Socket两个Java应用程序可通过一个双向的网络通信连接实现数据交换,这个双向链路的一端称为一个socket。socket通常用来实现client-server连接。包 中 定 义 的 两 个 类 Socket和ServerSocket,分别用来实现双向连接的client和server端建立连接时所需的寻址信息远程计算机的机器名或IP地址试图连接的端口号(Port number)Socket通信模型ServerServerSocket s(port#)s.accept()/等待连接Socket()OutputStreamInputStreamsocket.close()ClientS

5、ocket (host,port#)(Attempt to connect)OutputStreamInputStreamsocket.close()网络编程的四个基本步骤1.创建创建socket;2.打开连接到打开连接到socket的输入的输入/输出流;输出流;3.按照一定的协议对按照一定的协议对socket进行读进行读/写操作;写操作;4.关闭关闭socket;创建socketSocket/ServerSocket类的构造方法类的构造方法Socket(InetAddress address,int port);Socket(InetAddress address,int port,bool

6、ean stream);Socket(String host,int port);Socket(String host,int port,boolean stream);ServerSocket(int port);ServerSocket(int port,int count);客户端Socket的建立try Socket socket=new Socket(”127.0.0.1,2000);catch(IOException e)System.out.println(Error:+e);服务器端Socket的建立ServerSocket server=null;try server=new

7、 ServerSocket(2000);catch(IOException e)System.out.println(can not listen to:+e);Socket socket=null;try socket=server.accept();catch(IOException e)System.out.println(Error:+e);打开输入/出流PrintStream os=new PrintStream(new BufferedOutputStream(socket.getOutputStream();DataInputStream is=new DataInputStre

8、am(socket.getInputStream();关闭Socketos.close();is.close();socket.close();简单的client/server程序import .*;import java.io.*;public class TestServer public static void main(String args)ServerSocket s=null;try s=new ServerSocket(8888);catch(IOException e)while(true)try Socket s1=s.accept();OutputStream os=s1

9、.getOutputStream();DataOutputStream dos=new DataOutputStream(os);dos.writeUTF(Hello,bye-bye!);dos.close();s1.close();catch(IOException e)简单的client/server程序import .*;import java.io.*;public class TestClient public static void main(String args)try Socket s1=new Socket(127.0.0.1,8888);InputStream is=s1.getInputStream();DataInputStream dis=new DataInputStream(is);System.out.println(dis.readUTF();dis.close();s1.close();catch(ConnectException connExc)System.err.println(服务器连接失败服务器连接失败!);catch(IOException e)本章内容本章内容使用使用包中的类在程序中实现网络通信包中的类在程序中实现网络通信URL类及其用法类及其用法Socket通信通信

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 生活休闲 > 生活常识

本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

工信部备案号:黑ICP备15003705号© 2020-2023 www.taowenge.com 淘文阁