



下載本文檔
版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、精選優(yōu)質(zhì)文檔-傾情為你奉上這個(gè)程序主要就是實(shí)現(xiàn)一個(gè)簡(jiǎn)單的郵件客戶端,在知道郵箱服務(wù)器pop3地址的情況下可以實(shí)現(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. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025按摩院轉(zhuǎn)讓合同范本
- 2025年中國(guó)國(guó)內(nèi)運(yùn)輸合同示范文本
- 2025建筑材料采購(gòu)安裝合同
- 2025智能手機(jī)買賣合同
- 2025年附近學(xué)校房屋租賃合同范本
- 2025股權(quán)轉(zhuǎn)讓合同模板范文
- 2025年度標(biāo)準(zhǔn)版企業(yè)辦公場(chǎng)地租賃合同協(xié)議書
- 2025委托生產(chǎn)合同標(biāo)準(zhǔn)范例
- 2025江蘇中天鋼鐵集團(tuán)有限公司產(chǎn)品采購(gòu)銷售合同
- 2025企業(yè)間合作開發(fā)合同
- 自身免疫性腦炎
- 醫(yī)院質(zhì)控科工作質(zhì)量考核指標(biāo)
- CRPS電源設(shè)計(jì)向?qū)?CRPS Design Guide r-2017
- GB/T 9345.1-2008塑料灰分的測(cè)定第1部分:通用方法
- GB/T 4937.22-2018半導(dǎo)體器件機(jī)械和氣候試驗(yàn)方法第22部分:鍵合強(qiáng)度
- GB/T 3452.2-2007液壓氣動(dòng)用O形橡膠密封圈第2部分:外觀質(zhì)量檢驗(yàn)規(guī)范
- 煤礦從業(yè)人員安全培訓(xùn)考試題庫(kù)(附答案)
- 第十章-國(guó)際政治與世界格局-(《政治學(xué)概論》課件)
- 2023年法律職業(yè)資格考試歷年真題精選合集
- 濾毒罐使用說(shuō)明書
- 如何上好一節(jié)思政課綜述課件
評(píng)論
0/150
提交評(píng)論