实验七应用层网络编程(一)

实验七应用层网络编程(一)

ID:22668914

大小:518.04 KB

页数:15页

时间:2018-10-30

实验七应用层网络编程(一)_第1页
实验七应用层网络编程(一)_第2页
实验七应用层网络编程(一)_第3页
实验七应用层网络编程(一)_第4页
实验七应用层网络编程(一)_第5页
资源描述:

《实验七应用层网络编程(一)》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库

1、浙江大学城市学院实验报告课程名称_实验项目名称实验成绩计算机网络应实验七应用层网络编程(一)指导老师(签名)闩期2014-06-03一.实验0的和要求1.通过实现使用Java应用层客户端和服务器来获得关于使用JavaSocket网络编程的经验(SMTP、POP3)。二.实验内容、原理及实验结果与分析1-SMTP编程(参考电子讲义“网络编程参考资料•应用层.pdf”及教材“第2章Socket编程”)阅读“网络编程参考资料-应用层.pdf”中8.3.1部分,实现“SMTP客户机实现”的源代码(SMTPCIientDemo.java),并在机器上编译运行通过。(注:可输入城院

2、SMTP邮件服务器smtp.email.zucc.edu.cn或其他邮件服务器作为SMTP服务器)【程序源代码】SMTPCIientDemo.javaimportjava.io.*;importjava.net/;importjava.util.*;//Chapter8,Listing1publicclassSMTPCIientDemo{protectedintport=25;protectedStringhostname="localhost";protectedStringfrom=…’;protectedStringto="”;protectedStringsub

3、ject="”;protectedStringbody=protectedSocketsocket;protectedBufferedReaderbr;protectedPrintWriterpw;//ConstructsanewinstanceoftheSMTPClientpublicSMTPCIientDemo()throwsException{try{getlnput();sendEmail();}catch(Exceptione){System.out.println("Errorsendingmessage-”+e);}}publicstaticvoidmai

4、n(String[]args)throwsException{//StarttheSMTPclient,soitcansendmessagesSMTPCIientDemoclient=newSMTPCIientDemo();}//ChecktheSMTPresponsecodeforanerrormessageprotectedintreadResponseCode()throwsException{Stringline=br.readLine();System.out.println("<"+line);line=line.substring(O,line.index

5、Of(M**));returnInteger.parselnt(line);}//WriteaprotocolmessagebothtothenetworksocketandtothescreenprotectedvoidwriteMsg(Stringmsg)throwsException{pw.println(msg);pw.flush();System.out.println(”〉"+msg);}//Closeallreaders,streamsandsocketsprotectedvoidcloseConnection()throwsException{pw.fl

6、ush();pw.close();br.close();socket.close();}//SendtheQUITprotocolmessage,andterminateconnectionprotectedvoidsendQuit()throwsException{System.out.println(”SendingQUIT");writeMsg("QUir’);readResponseCode();System.out.println("ClosingConnection");closeConnection();//SendanemailmessageviaSMT

7、P,adheringtotheprotocolknownasRFC2821protectedvoidsendEmail()throwsException{System.out.printlnfSendingmessagenow:Debugbelow");System.out.println(•’"+System.out.printlnf’OpeningSocket");socket=newSocket(this.hostname,this.port);System.out.println(HCreatingReader&Writer");

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。