分享
分销 收藏 举报 申诉 / 16
播放页_导航下方通栏广告

类型实验七--应用层网络编程(一).doc

  • 上传人:w****g
  • 文档编号:2317200
  • 上传时间:2024-05-28
  • 格式:DOC
  • 页数:16
  • 大小:241.50KB
  • 下载积分:8 金币
  • 播放页_非在线预览资源立即下载上方广告
    配套讲稿:

    如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。

    特殊限制:

    部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。

    关 键  词:
    实验 应用 网络 编程
    资源描述:
    ______________________________________________________________________________________________________________ 浙江大学城市学院实验报告 课程名称 计算机网络应用 实验项目名称 实验七 应用层网络编程(一) 实验成绩 指导老师(签名) 日期 2014-06-03 一. 实验目的和要求 1. 通过实现使用Java应用层客户端和服务器来获得关于使用Java Socket网络编程的经验(SMTP、POP3)。 二. 实验内容、原理及实验结果与分析 1. SMTP编程(参考电子讲义“网络编程参考资料-应用层.pdf”及教材“第2章 Socket编程”) 阅读 “网络编程参考资料-应用层.pdf”中 8.3.1部分,实现“SMTP客户机实现”的源代码(SMTPClientDemo.java),并在机器上编译运行通过。(注:可输入城院SMTP邮件服务器或其他邮件服务器作为SMTP服务器) 【程序源代码】 SMTPClientDemo.java import java.io.*; import .*; import java.util.*; // Chapter 8, Listing 1 public class SMTPClientDemo { protected int port = 25; protected String hostname = "localhost"; protected String from = ""; protected String to = ""; protected String subject = ""; protected String body = ""; protected Socket socket; protected BufferedReader br; protected PrintWriter pw; // Constructs a new instance of the SMTP Client public SMTPClientDemo() throws Exception { try { getInput(); sendEmail(); } catch (Exception e) { System.out.println ("Error sending message - " + e); } } public static void main(String[] args) throws Exception { // Start the SMTP client, so it can send messages SMTPClientDemo client = new SMTPClientDemo(); } // Check the SMTP response code for an error message protected int readResponseCode() throws Exception { String line = br.readLine(); System.out.println("< "+line); line = line.substring(0,line.indexOf(" ")); return Integer.parseInt(line); } // Write a protocol message both to the network socket and to the screen protected void writeMsg(String msg) throws Exception { pw.println(msg); pw.flush(); System.out.println("> "+msg); } // Close all readers, streams and sockets protected void closeConnection() throws Exception { pw.flush(); pw.close(); br.close(); socket.close(); } // Send the QUIT protocol message, and terminate connection protected void sendQuit() throws Exception { System.out.println("Sending QUIT"); writeMsg("QUIT"); readResponseCode(); System.out.println("Closing Connection"); closeConnection(); } // Send an email message via SMTP, adhering to the protocol known as RFC 2821 protected void sendEmail() throws Exception { System.out.println("Sending message now: Debug below"); System.out.println("---------------------------------" + "-----------------------------"); System.out.println("Opening Socket"); socket = new Socket(this.hostname,this.port); System.out.println("Creating Reader & Writer"); br = new BufferedReader(new InputStreamReader(socket.getInputStream())); pw = new PrintWriter(new OutputStreamWriter(socket.getOutputStream())); System.out.println("Reading first line"); int code = readResponseCode(); if(code != 220) { socket.close(); throw new Exception("Invalid SMTP Server"); } System.out.println("Sending helo command"); writeMsg("HELO "+InetAddress.getLocalHost().getHostName()); code = readResponseCode(); if(code != 250) { sendQuit(); throw new Exception("Invalid SMTP Server"); } System.out.println("Sending mail from command"); writeMsg("MAIL FROM:<"+this.from+">"); code = readResponseCode(); if(code != 250) { sendQuit(); throw new Exception("Invalid from address"); } System.out.println("Sending rcpt to command"); writeMsg("RCPT TO:<"+this.to+">"); code = readResponseCode(); if(code != 250) { sendQuit(); throw new Exception("Invalid to address"); } System.out.println("Sending data command"); writeMsg("DATA"); code = readResponseCode(); if(code != 354) { sendQuit(); throw new Exception("Data entry not accepted"); } System.out.println("Sending message"); writeMsg("Subject: "+this.subject); writeMsg("To: "+this.to); writeMsg("From: "+this.from); writeMsg(""); writeMsg(body); code = readResponseCode(); sendQuit(); if(code != 250) throw new Exception("Message may not have been sent correctly"); else System.out.println("Message sent"); } // Obtain input from the user protected void getInput() throws Exception { // Read input from user console String data=null; BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); // Request hostname for SMTP server System.out.print("Please enter SMTP server hostname: "); data = br.readLine(); if (data == null || data.equals("")) hostname="localhost"; else hostname=data; // Request the sender's email address System.out.print("Please enter FROM email address: "); data = br.readLine(); from = data; // Request the recipient's email address System.out.print("Please enter TO email address :"); data = br.readLine(); if(!(data == null || data.equals(""))) to=data; System.out.print("Please enter subject: "); data = br.readLine(); subject=data; System.out.println("Please enter plain-text message ('.' character" + "on a blank line signals end of message):"); StringBuffer buffer = new StringBuffer(); // Read until user enters a . on a blank line String line = br.readLine(); while(line != null) { // Check for a '.', and only a '.', on a line if(line.equalsIgnoreCase(".")) { break; } buffer.append(line); buffer.append("\n"); line = br.readLine(); } buffer.append(".\n"); body = buffer.toString(); } } 【实验结果与分析】 2. POP3编程(参考电子讲义“网络编程参考资料-应用层.pdf”及教材“第2章 Socket编程”) 阅读 “网络编程参考资料-应用层.pdf”中 8.3.2部分,实现“POP3客户实现”的源代码(Pop3ClientDemo.java),并在机器上编译运行通过。(注:可输入城院POP3邮件服务器或其他邮件服务器作为POP3服务器) 【程序源代码】 Pop3ClientDemo.java import java.io.*; import .*; import java.util.*; public class Pop3ClientDemo { protected int port = 110; protected String hostname = "localhost"; protected String username = ""; protected String password = ""; protected Socket socket; protected BufferedReader br; protected PrintWriter pw; // Constructs a new instance of the POP3 client public Pop3ClientDemo() throws Exception { try { // Get user input getInput(); // Get mail messages displayEmails(); } catch(Exception e) { System.err.println ("Error occured - details follow"); e.printStackTrace(); System.out.println(e.getMessage()); } } // Returns TRUE if POP response indicates success, FALSE if failure protected boolean responseIsOk() throws Exception { String line = br.readLine(); System.out.println("< "+line); // 和 SMTP 不同的地方,POP3 的回覆不再是一個 number 而是 // +OK 來代表要求成功。失敗則以 -ERR 來代表。 return line.toUpperCase().startsWith("+OK"); } // Reads a line from the POP server, and displays it to screen protected String readLine(boolean debug) throws Exception { String line = br.readLine(); // Append a < character to indicate this is a server protocol response if (debug) System.out.println("< "+line); else System.out.println(line); return line; } // Writes a line to the POP server, and displays it to the screen protected void writeMsg(String msg) throws Exception { pw.println(msg); pw.flush(); System.out.println("> "+msg); } // Close all writers, streams and sockets protected void closeConnection() throws Exception { pw.flush(); pw.close(); br.close(); socket.close(); } // Send the QUIT command, and close connection protected void sendQuit() throws Exception { System.out.println("Sending QUIT"); writeMsg("QUIT"); readLine(true); System.out.println("Closing Connection"); closeConnection(); } // Display emails in a message protected void displayEmails() throws Exception { BufferedReader userinput = new BufferedReader( new InputStreamReader (System.in) ); System.out.println("Displaying mailbox with protocol commands" + "and responses below"); System.out.println("-----------------------------------------" + "---------------------"); // Open a connection to POP3 server System.out.println("Opening Socket"); socket = new Socket(this.hostname, this.port); br = new BufferedReader(new InputStreamReader(socket.getInputStream())); pw = new PrintWriter(new OutputStreamWriter(socket.getOutputStream())); // If response from server is not okay if(! responseIsOk()) { socket.close(); throw new Exception("Invalid POP3 Server"); } // Login by sending USER and PASS commands System.out.println("Sending username"); writeMsg("USER "+this.username); if(!responseIsOk()) { sendQuit(); throw new Exception("Invalid username"); } System.out.println("Sending password"); writeMsg("PASS "+this.password); if(!responseIsOk()) { sendQuit(); throw new Exception("Invalid password"); } // Get mail count from server .... System.out.println("Checking mail"); writeMsg("STAT"); // ... and parse for number of messages String line = readLine(true); StringTokenizer tokens = new StringTokenizer(line," "); // +OK tokens.nextToken(); // number of messages int messages = Integer.parseInt(tokens.nextToken()); // size of all messages int maxsize = Integer.parseInt(tokens.nextToken()); if (messages == 0) { System.out.println ("There are no messages."); sendQuit(); return; } System.out.println ("There are " + messages + " messages."); System.out.println("Press enter to continue."); userinput.readLine(); for(int i = 1; i <= messages ; i++) { System.out.println("Retrieving message number "+i); writeMsg("RETR "+i); System.out.println("--------------------"); line = readLine(false); while(line != null && !line.equals(".")) { line = readLine(false); } System.out.println("--------------------"); System.out.println("Press enter to continue. To stop, " + "type Q then enter"); String response = userinput.readLine(); if (response.toUpperCase().startsWith("Q")) break; } sendQuit(); } public static void main(String[] args) throws Exception { Pop3ClientDemo client = new Pop3ClientDemo(); } // Read user input protected void getInput() throws Exception { String data=null; BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); System.out.print("Please enter POP3 server hostname:"); data = br.readLine(); if(data == null || data.equals("")) hostname="localhost"; else hostname=data; System.out.print("Please enter mailbox username:"); data = br.readLine(); if(!(data == null || data.equals(""))) username=data; System.out.print("Please enter mailbox password:"); data = br.readLine(); if(!(data == null || data.equals(""))) password=data; } } 【实验结果与分析】 3. Ethereal抓包分析 用Ethereal软件截获上面两个程序运行时客户机和服务器之间发送的数据包,并且根据截获的数据包内容进行分析。 【实验结果与分析】 host 10.66.19.27 tcp port 25 SMTP数据包结构 下面的表格的值取自图中选中的数据包: 前32位 长度 16位 16位 字段 Source port Destination port 值 3588 25 第2、3个32位: 长度 32位 32位 字段 Sequence number Acknowledgement number 值 82 126 下一个16位:1b(1位) 长度 4位 6位 1位 1位 1位 1位 1位 1位 字段 Header length Reserved URG ACK PSH RST SYN FIN 值 20 0 0 1 1 0 0 0 再下一个32位: 长度 16位 16位 字段 Window size Checksum 值 65410 0x4336 host 10.66.19.27 tcp port 110 Pop3数据包结构 下面的表格的值取自图中选中的数据包: 前32位 长度 16位 16位 字段 Source port Destination port 值 3629 110 第2、3个32位: 长度 32位 32位 字段 Sequence number Acknowledgement number 值 1 66 下一个16位:1b(1位) 长度 4位 6位 1位 1位 1位 1位 1位 1位 字段 Header length Reserved URG ACK PSH RST SYN FIN 值 20 0 0 1 1 0 0 0 再下一个32位: 长度 16位 16位 字段 Window size Checksum 值 65470 0x2a01 三. 讨论、心得 记录实验感受、上机过程中遇到的困难及解决办法、遗留的问题、意见和建议等。 Welcome To Download !!! 欢迎您的下载,资料仅供参考! 精品资料
    展开阅读全文
    提示  咨信网温馨提示:
    1、咨信平台为文档C2C交易模式,即用户上传的文档直接被用户下载,收益归上传人(含作者)所有;本站仅是提供信息存储空间和展示预览,仅对用户上传内容的表现方式做保护处理,对上载内容不做任何修改或编辑。所展示的作品文档包括内容和图片全部来源于网络用户和作者上传投稿,我们不确定上传用户享有完全著作权,根据《信息网络传播权保护条例》,如果侵犯了您的版权、权益或隐私,请联系我们,核实后会尽快下架及时删除,并可随时和客服了解处理情况,尊重保护知识产权我们共同努力。
    2、文档的总页数、文档格式和文档大小以系统显示为准(内容中显示的页数不一定正确),网站客服只以系统显示的页数、文件格式、文档大小作为仲裁依据,个别因单元格分列造成显示页码不一将协商解决,平台无法对文档的真实性、完整性、权威性、准确性、专业性及其观点立场做任何保证或承诺,下载前须认真查看,确认无误后再购买,务必慎重购买;若有违法违纪将进行移交司法处理,若涉侵权平台将进行基本处罚并下架。
    3、本站所有内容均由用户上传,付费前请自行鉴别,如您付费,意味着您已接受本站规则且自行承担风险,本站不进行额外附加服务,虚拟产品一经售出概不退款(未进行购买下载可退充值款),文档一经付费(服务费)、不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
    4、如你看到网页展示的文档有www.zixin.com.cn水印,是因预览和防盗链等技术需要对页面进行转换压缩成图而已,我们并不对上传的文档进行任何编辑或修改,文档下载后都不会有水印标识(原文档上传前个别存留的除外),下载后原文更清晰;试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓;PPT和DOC文档可被视为“模板”,允许上传人保留章节、目录结构的情况下删减部份的内容;PDF文档不管是原文档转换或图片扫描而得,本站不作要求视为允许,下载前可先查看【教您几个在下载文档中可以更好的避免被坑】。
    5、本文档所展示的图片、画像、字体、音乐的版权可能需版权方额外授权,请谨慎使用;网站提供的党政主题相关内容(国旗、国徽、党徽--等)目的在于配合国家政策宣传,仅限个人学习分享使用,禁止用于任何广告和商用目的。
    6、文档遇到问题,请及时联系平台进行协调解决,联系【微信客服】、【QQ客服】,若有其他问题请点击或扫码反馈【服务填表】;文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“【版权申诉】”,意见反馈和侵权处理邮箱:1219186828@qq.com;也可以拔打客服电话:0574-28810668;投诉电话:18658249818。

    开通VIP折扣优惠下载文档

    自信AI创作助手
    关于本文
    本文标题:实验七--应用层网络编程(一).doc
    链接地址:https://www.zixin.com.cn/doc/2317200.html
    w****g
         内容提供者      已认证 实名认证

    AI创作

    AI创作 AI创作 AI创作

    AI创作 AI创作 AI创作

    AI创作 AI创作 AI创作

    AI创作 AI创作 AI创作

    AI创作

    自信AI创作助手公众号

    右侧通用广告(自信公众号)
    页脚通栏广告

    Copyright ©2010-2026   All Rights Reserved  宁波自信网络信息技术有限公司 版权所有   |  客服电话:0574-28810668    微信客服:咨信网客服    投诉电话:18658249818   

    违法和不良信息举报邮箱:help@zixin.com.cn    文档合作和网站合作邮箱:fuwu@zixin.com.cn    意见反馈和侵权处理邮箱:1219186828@qq.com   | 证照中心

    12321jubao.png12321网络举报中心 电话:010-12321  jubao.png中国互联网举报中心 电话:12377   gongan.png浙公网安备33021202000488号  icp.png浙ICP备2021020529号-1 浙B2-20240490   


    关注我们 :微信公众号  抖音  微博  LOFTER               

    自信网络  |  ZixinNetwork