



下載本文檔
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、精選優(yōu)質(zhì)文檔-傾情為你奉上這個程序主要就是實現(xiàn)一個簡單的郵件客戶端,在知道郵箱服務器pop3地址的情況下可以實現(xiàn)隨意填寫發(fā)信人地址給指定用戶發(fā)郵件。代碼如下:import java.awt.*;import java.awt.event.*;import java.io.*;import .*;import javax.swing.*;import javax.swing.border.BevelBorder;public class Mailclient extends JFrame public Mailclient() JPanel p = new JPanel();/create th
2、e GUIJPanel p1 = new JPanel();JPanel p2 = new JPanel();JPanel p3 = new JPanel();JPanel p4 = new JPanel();JPanel p5 = new JPanel();JButton Send = new JButton("Send");/three buttonJButton Clear = new JButton("Clear");JButton Quit = new JButton("Quit");String defult = &quo
3、t;You can change the information or use the defult, and you can get the run information from Java Console."/create the default mail textfinal JTextArea messages = new JTextArea(defult, 22, 40);messages.setLineWrap(true);/auto line feedmessages.setBorder(new BevelBorder(BevelBorder.LOWERED, Colo
4、r.gray, Color.gray);p1.add(new JLabel("From: ");final JTextField jtf1 = new JTextField("android_757", 38);p1.add(jtf1);p2.add(new JLabel("To: ");final JTextField jtf2 = new JTextField("android_757", 40);p2.add(jtf2);p3.add(new JLabel("Subject: ");fin
5、al JTextField jtf3 = new JTextField("Test Mailclient", 37);p3.add(jtf3);p5.add(new JLabel("Mail Server Name: ");final JTextField jtf4 = new JTextField("", 32);p5.add(jtf4);p4.add(Send);Send.addActionListener(new ActionListener() public void actionPerformed(ActionEvent e
6、)Socket clientSocket;OutputStream outToServer;/send messengers to mail serverBufferedReader inFromServer;/receive messengers from mail serverString mailFrom = jtf1.getText();/get the information that user inputString mailTo = jtf2.getText();String mailSubject = jtf3.getText();String mailSeverName =
7、jtf4.getText();String getFromServer = null;try clientSocket = new Socket(mailSeverName, 25);/create connect with mailServer on port 25inFromServer = new BufferedReader(new InputStreamReader(clientSocket.getInputStream();outToServer = clientSocket.getOutputStream();PrintWriter sockout = new PrintWrit
8、er (outToServer, true); getFromServer = inFromServer.readLine();System.out.println(getFromServer);if(getFromServer.startsWith("220")/send messengers as STMP rules(book page 78)sockout.println ("HELO Sariel"); /and output all information on consoleSystem.out.println("HELO Sar
9、iel");getFromServer = inFromServer.readLine();System.out.println(getFromServer);if(getFromServer.startsWith("250")sockout.println ("MAIL FROM: " +"<" + mailFrom + ">");System.out.println("MAIL FROM: " +"<" + mailFrom + "&
10、gt;");getFromServer = inFromServer.readLine();System.out.println(getFromServer);if(getFromServer.startsWith("250")sockout.println ("RCPT TO: " +"<" + mailTo + ">");System.out.println("RCPT TO: " +"<" + mailTo + ">"
11、;);getFromServer = inFromServer.readLine();System.out.println(getFromServer);if(getFromServer.startsWith("250")sockout.println ("DATA");System.out.println("DATA");getFromServer = inFromServer.readLine();System.out.println(getFromServer);if(getFromServer.startsWith("
12、;354")sockout.println ("From: " + mailFrom);sockout.println ("To: " + mailTo);sockout.println ("Subject: " + mailSubject);sockout.println ();System.out.println("From: " + mailFrom);System.out.println("To: " + mailTo);System.out.println("Sub
13、ject: " + mailSubject);System.out.println();String str=messages.getText();StringReader sr=new StringReader(str);BufferedReader br=new BufferedReader(sr);String line = ""while(true)try /write the main text to serverline=br.readLine();if(line = null)break;sockout.println (line);System.o
14、ut.println(line); catch (IOException e1) e1.printStackTrace();sockout.println (".");/end main text with "."System.out.println(".");getFromServer = inFromServer.readLine();System.out.println(getFromServer);if(getFromServer.startsWith("250")sockout.println (&quo
15、t;QUIT");System.out.println("QUIT");getFromServer = inFromServer.readLine();System.out.println(getFromServer);if(getFromServer.startsWith("221")System.out.println('n' + "Successfully send!"); catch (UnknownHostException e2) e2.printStackTrace(); catch (IOEx
16、ception e2) e2.printStackTrace(););p4.add(Clear);/the button "Clear" delete all information in JTextAreaClear.addActionListener(new ActionListener() public void actionPerformed(ActionEvent e)messages.setText(""););p4.add(Quit);Quit.addActionListener(new ActionListener() public void actionPerformed(ActionEvent e)System.exit(0););p.add(p1);p.add(p2);p.add(p3);p.add(p5);p.add(messages);p.add(p4);p.setBorder(new BevelBorder(BevelBorder.RAISED);add(p);public static void mai
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 遂寧遂寧市住房和城鄉(xiāng)建設局公開招聘編外人員筆試歷年參考題庫附帶答案詳解
- 江西科技師范大學《創(chuàng)業(yè)管理》2023-2024學年第二學期期末試卷
- 貴州工貿(mào)職業(yè)學院《數(shù)字孿生與智能設計》2023-2024學年第二學期期末試卷
- 遼寧職業(yè)學院《地下水污染與防治》2023-2024學年第二學期期末試卷
- 冀中職業(yè)學院《疲勞與斷裂基礎》2023-2024學年第二學期期末試卷
- 衡水學院《功能合成材料與創(chuàng)新創(chuàng)業(yè)》2023-2024學年第二學期期末試卷
- 浙江財經(jīng)大學東方學院《法語語法》2023-2024學年第二學期期末試卷
- 正德職業(yè)技術(shù)學院《深度學習應用》2023-2024學年第二學期期末試卷
- 揚州中瑞酒店職業(yè)學院《商業(yè)展示設計》2023-2024學年第二學期期末試卷
- 湖北科技學院《水景設計》2023-2024學年第二學期期末試卷
- 大學生手機市場的調(diào)查報告
- 商務標評審表
- 2021版《安全生產(chǎn)法》培訓課件
- 英美文學選讀教材翻譯
- 大學語文說課課件
- 古建筑施工合同
- 大連理工大學畫法幾何自學片段課件
- 慢性心功能不全護理查房
- 雙新轉(zhuǎn)常規(guī)申請表
- 公司企業(yè)接收證明
- 畢業(yè)設計論文小型風力發(fā)電機畢業(yè)設計
評論
0/150
提交評論