已阅读5页,还剩11页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
第十五章,网络编程,2,本章内容,使用包中的类在程序中实现网络通信 URL类及其用法 Socket通信,3,URL,URL(Uniform Resource Locator)-统一资源定位器,表示Internet上某一资源的地址。 URL组成: 协议名和资源名 protocol:resourceName URL举例: / /home/welcome.html /developers/,4,.URL类,常用构造方法 public URL(String spec); URL u1 = new URL(“/home/”); public URL(URL context, String spec); URL u2 = new URL(u1, “welcome.html”); public URL(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” );,5,URL类应用举例(1),import java.io.*; import .*; public class URLReader public static void main(String args) try URL tirc = new URL(“/“); BufferedReader 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); ,6,URL类应用举例(2),程序URLReader.java输出结果: 清华大学网站首页 ,7,Socket,两个Java应用程序可通过一个双向的网络通信连接实现数据交换,这个双向链路的一端称为一个socket。 socket通常用来实现client-server连接。 包中定义的两个类Socket和ServerSocket,分别用来实现双向连接的client和server端 建立连接时所需的寻址信息 远程计算机的机器名或IP地址 试图连接的端口号(Port number),8,Socket通信模型,Server,ServerSocket s (port #),s.accept()/等待连接,Socket(),OutputStream,InputStream,socket.close(),Client,Socket (host, port #) (Attempt to connect),OutputStream,InputStream,socket.close(),9,网络编程的四个基本步骤,创建socket; 打开连接到socket的输入/输出流; 按照一定的协议对socket进行读/写操作; 关闭socket;,10,创建socket,Socket/ServerSocket类的构造方法 Socket(InetAddress address, int port); Socket(InetAddress address, int port, boolean stream); Socket(String host, int port); Socket(String host, int port, boolean stream); ServerSocket(int port); ServerSocket(int port, int count);,11,客户端Socket的建立 try Socket socket=new Socket(”“,2000); catch(IOException e) System.out.println(“Error:“+e); ,12,服务器端Socket的建立 ServerSocket server=null; try server=new 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); ,13,打开输入/出流 PrintStream os=new PrintStream(new BufferedOutputStream(socket.getOutputStream(); DataInputStream is=new DataInputStream(socket.getInputStream(); 关闭Socket os.close(); is.close(); socket.close();,14,简单的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.getOutputStream(); DataOutputStream dos = new DataOutputStream(os); dos.writeUTF(“Hello,bye-bye!“); dos.close(); s1.close(); catch (IOException e) ,15,简单的client/server程序,import .*; import java.io.*; public class TestClient public static void main(String args) try Socket s1 = new Socket(““, 8888); InputStream is = s1.getInputStream(); DataInputStream dis = new DataInputStream(is); System.out.println(dis.readUTF(); dis.c
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 建筑工程计量与计价 试卷及答案 AB卷
- 护理实践中的临终关怀
- 护理铺床操作规范详解
- 吉林省长春市东北师大2025-2026学年高三下五月模拟地理试卷(含答案)
- 供应链管理师风险识别强化考核试卷含答案
- 竹藤师安全素养水平考核试卷含答案
- 冷作钣金工保密意识考核试卷含答案
- 氯甲烷生产工安全演练评优考核试卷含答案
- 2026年新科教版高中高二物理上册第一单元电场强度计算卷含答案
- 验房师安全行为考核试卷含答案
- GJB827B--2020军事设施建设费用定额
- T/CECS 10214-2022钢面镁质复合风管
- DL∕T 5776-2018 水平定向钻敷设电力管线技术规定
- 寻根文学 (1)课件
- 铺轨专项方案
- 低钾型周期性瘫痪患者护理共20张课件
- 赖氨酸工艺计算设备选型工艺流程发酵设计和实现
- DB33∕1050-2016 城市建筑工程日照分析技术规程
- 广东省肇庆市初三物理自主招生试题)
- 健康体检知识解读-PPT课件
- 农村集体三资管理流程图
评论
0/150
提交评论