- 1、本文档共14页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
浙江大学城市学院实验报告
课程名称 计算机网络应用
实验项目名称 实验七 应用层网络编程(一)
实验成绩 指导老师(签名) 日期 2014-06-03
一. 实验目的和要求
通过实现使用Java应用层客户端和服务器来获得关于使用Java Socket网络编程的经验(SMTP、POP3)。
二. 实验内容、原理及实验结果与分析
SMTP编程(参考电子讲义“网络编程参考资料-应用层.pdf”及教材“第2章 Socket编程”)
阅读 “网络编程参考资料-应用层.pdf”中 8.3.1部分,实现“SMTP客户机实现”的源代码(SMTPClientDemo.java),并在机器上编译运行通过。(注:可输入城院SMTP邮件服务器smtp.email.zucc.edu.cn或其他邮件服务器作为SMTP服务器)
【程序源代码】
SMTPClientDemo.java
import java.io.*;
import java.net.*;
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 Exc
您可能关注的文档
最近下载
- 第18课 大家一起真快乐(课件)-2024冀美版美术二年级上册.pptx
- 人教版九年级化学上册全册教案(完整版)教学设计含教学反思.pdf
- 蒂森电梯L4技术等级考试试题.pdf
- 八年级英语下册教案:Unit 4 Why don’t you talk to your parents.doc VIP
- 实务手册-—房地产手册(精编)全套.pdf
- 耀华XK3190-A9使用说明书.pdf
- 天下兴亡匹夫有责(班会课)(逃出大英博物馆).pptx VIP
- 蒂森克虏伯扶梯L3试卷.pdf VIP
- 人教版初中英语课标版 九年级第十单元Section A 3a—3c(21张).pptx
- 中小企业融资-全套PPT课件.pptx
文档评论(0)