Java设计防病毒电子邮件程序之代码
发表于:2007-06-22来源:作者:点击数:
标签:
下一页 1 2 3 4 5 6 7 8 9 这两个程序的操作都很简单。这两个程序叫做VirPro01a和VirPro01b,分别与上面讨论的假定的情形中的程序A和程序B对应。 程序VirPro01a VirPro01a程序被设计为把POP3电子邮件 服务器 作为公共的电子邮件服务器(秘密电子邮件帐号的服
下一页 1 2 3 4 5 6 7 8 9
这两个程序的操作都很简单。这两个程序叫做VirPro01a和VirPro01b,分别与上面讨论的假定的情形中的程序A和程序B对应。
程序VirPro01a
VirPro01a程序被设计为把POP3电子邮件服务器作为公共的电子邮件服务器(秘密电子邮件帐号的服务器可以是任何类型的,例如,它可以是典型的WebMail服务器)。本程序在WinXP下使用SDK 1.4.2测试通过。
实例变量
VirPro01a类的开头定义了一个实例变量列表:
clearcase/" target="_blank" >cc66 width="90%" align=center bgColor=#e6e4dd border=1>
class VirPro01a extends Frame{ String dataPath = "./Messages/"; int numberMsgs = 0; int msgCounter = 0; int msgNumber; String uidl = "";//唯一的POP3消息ID BufferedReader inputStream; PrintWriter outputStream; Socket socket; String pathFileName; | dataPath变量包含对本地工作文件夹的指针,该文件夹是存储等待病毒扫描并转发到秘密电子邮件帐号的消息的地方。
你可能希望使用另一个不同的文件夹。如果需要这样做,简单地提供路径和文件夹名称(作为字符串)。你可以发现,我的工作文件夹叫做Messages,它是用包含程序的类文件的文件夹的相对路径指定的。你也可以使用绝对路径。
剩余的实例变量都是程序用于不同目的的简单工作变量。
Main方法
下面的main方法确认正确的命令行参数数量,并使用这些参数来实例化VirPro01a类的一个对象。
public static void main(String[] args){ if(args.length != 3){ System.out.println("Usage: java VirPro01a "+ "pubServer userName password"); System.exit(0); }// if结束 new VirPro01a(args[0],args[1],args[2]); }// main结束 | 构造函数
它的构造函数如下:
VirPro01a(String server,String userName, String password){ int port = 110; //pop3邮件端口 try{ //得到套接字,连接到特定服务器的特定端口 socket = new Socket(server,port); //从套接字得到输入流 inputStream = new BufferedReader(new InputStreamReader(socket.getInputStream())); //从套接字得到输出流 outputStream = new PrintWriter(new OutputStreamWriter(socket.getOutputStream()),true); //连接后在命令行屏幕上显示从服务器接收到的消息 String connectMsg = validateOneLine(); System.out.println("Connected to server "+ connectMsg); //现在通讯进程处于AUTHORIZATION 状态。向服务器发送用户名和密码。 //命令采用明文、大写的方式发送。命令后面带有参数。发送命令。 outputStream.println("USER " + userName); //得到响应,并确认响应是+OK而不是-ERR。 String userResponse = validateOneLine(); //在命令行屏幕显示响应 System.out.println("USER " + userResponse); //向服务器发送密码 outputStream.println("PASS " + password); //验证服务器的响应是+OK 。在过程中显示响应。 System.out.println("PASS " + validateOneLine()); }catch(Exception e){e.printStackTrace();} | 上面的代码建立了与公共电子邮件服务器的通讯路径。
WindowListener
下面的代码使用匿名类实例化了并注册了一个WindowListener对象,为页面右上角的“Close”按钮服务。
this.addWindowListener(new WindowAdapter(){ public void windowClosing(WindowEvent e){ //结束与服务器的对话 outputStream.println("QUIT"); String quitResponse =validateOneLine(); //在命令行屏幕上显示响应 System.out.println("QUIT " + quitResponse); try{ socket.close(); }catch(Exception ex){ System.out.println("\n" + ex);} System.exit(0); }// windowClosing结束 }// WindowAdapter()结束 );// addWindowListener结束 | Final型的本地变量
下面的代码声明并初始化了构造函数中的两个本地变量:
final Button startButton =new Button("Start"); final TextArea textArea =new TextArea(20,50); | 这两个本地变量包含了图1所示的按钮和文本区域的指针。(请注意,这两个本地变量必须使用final标记,因为它们能够被匿名类中定义的代码访问。匿名类或本地类中的代码不能访问非final本地变量。)
注册ActionListener
下面的代码显示了用于实例化和注册按钮的ActionListener对象的匿名类:
startButton.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent e){ try{ //现在通讯进程处于TRANSACTION状态。检索并保存消息 if(numberMsgs == 0){ outputStream.println("STAT"); String stat = validateOneLine(); //得到消息的数量(字符串) String numberMsgsStr =stat.substring(4,stat.indexOf(" ",5)); //把字符串转换为整型 numberMsgs = Integer.parseInt(numberMsgsStr); }// 如果numberMsgs == 0终止 //注意:Msg数量从1而不是0开始。检索并保存每个消息。 //每个消息以新行的句点结束 msgNumber = msgCounter + 1; if(msgNumber <= numberMsgs){ //处理下一个消息。得到并保存来自服务器的消息唯一标识, //验证响应 outputStream.println("UIDL " + msgNumber); uidl = validateOneLine(); //打开输出文件保存消息。使用UIDL作为文件名 pathFileName = dataPath + uidl; DataOutputStream dataOut =new DataOutputStream(new FileOutputStream(pathFileName)); //发送RETR命令开始消息检索进程 outputStream.println("RETR " + msgNumber); //验证响应 String retrResponse =validateOneLine(); //从服务器读取消息的第一行 String msgLine =inputStream.readLine(); //继续读取消息直到遇到第一个“.”符号。它标识消息结束。 while(!(msgLine.equals("."))){ //把数据行写入输出文件并读取下一行。 //在写入输出文件的时候插入新行的字符。 dataOut.writeBytes(msgLine + "\n"); msgLine = inputStream.readLine(); }// while结束 //关闭输出文件。现在消息存储在以服务器提供的 //唯一ID为文件名的本地文件中。 dataOut.close(); //显示过程 textArea.append(msgNumber + "\n"); //增加消息计数器,为下一个消息作准备 msgCounter++; //禁止用户为每个新消息按下按钮 Toolkit.getDefaultToolkit().getSystemEventQueue(). postEvent(new ActionEvent(startButton,ActionEvent. ACTION_PERFORMED,"Start/Next")); }//如果msgNumber <= numberMsgs就终止 else{//msgNumber > numberMsgs //没有更多消息了。禁止 Start/Next 按钮 startButton.setEnabled(false); //提示用户 Toolkit.getDefaultToolkit().beep(); Thread.currentThread().sleep(300); Toolkit.getDefaultToolkit().beep(); Thread.currentThread().sleep(300); Toolkit.getDefaultToolkit().beep(); }// else终止 }// try终止 catch(Exception ex){ ex.printStackTrace();} }// actionPerformed终止 }// ActionListener终止 );// addActionListener终止 | ActionListener对象的目的是下载公共电子邮件服务器上的所有消息,把每个单独的消息放入不同的文件中,并把这些文件存储在工作文件夹中。
|
原文转自:http://www.ltesting.net