freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

基于des加密算法的電子郵件的收發(fā)軟件的開發(fā)畢業(yè)設(shè)計(jì)(編輯修改稿)

2025-07-15 14:12 本頁(yè)面
 

【文章內(nèi)容簡(jiǎn)介】 an=2 align=leftinput name=title type=text id=title title=郵件主題 size=56/td /tr tr td height=28 align=center附件 1:/td td colspan=2 align=leftinput name=adjunct type=text id=adjunct title=附件 size=39 readonly=yes amp。nbsp。 input name=Submit3 type=button class=btn_grey value=上傳附件 onClick=(39。?textName=adjunct39。,39。39。,39。width=350,height=15039。)。/td /tr tr td height=28 align=center附件 2:/td td colspan=2 align=leftinput name=adjunct1 type=text id=adjunct1 title=附件 size=39 readonly=yes amp。nbsp。 input name=Submit32 type=button class=btn_grey value=上傳附件1 onClick=(39。?textName=adjunct139。,39。39。,39。width=350,height=15039。)。/td /tr tr td height=28 align=center內(nèi)amp。nbsp。amp。nbsp。容:/td td colspan=2 align=lefttextarea name=content cols=50 rows=10/textarea/td /tr tr td height=28 align=center /td td colspan=2 align=leftinput name=Submit type=submit class=btn_grey value=發(fā)送 amp。nbsp。 input name=Submit2 type=reset class=btn_grey value=重置/td /tr /table/td /tr /table l Action中主要代碼:public int sendMail(SendMailForm s) { int ret = 0。 String host = ()。 //POP3服務(wù)器 String from = ()。 //發(fā)件人 String to = ()。 //收件人 String subject = ()。 //主題 String content = ()。 //郵件內(nèi)容 String password = ()。 //發(fā)件人密碼 String path = ()。 //附件1 String path1=()。 //附件2 try { String mailserver =smtp.+((39。@39。)+1,())。//在Internet上發(fā)送郵件時(shí)的代碼 String mailserver =host。 //在局域網(wǎng)內(nèi)發(fā)送郵件時(shí)的代碼 Properties prop = new Properties()。 //實(shí)例化Properties類 (, mailserver)。 //指定采用SMTP協(xié)議的郵件發(fā)送服務(wù)器的主機(jī)名 (, true)。 //指定SMTP服務(wù)器需要驗(yàn)證 Session sess = (prop)。 //根據(jù)已經(jīng)配置的屬性創(chuàng)建Session實(shí)例 (true)。 //設(shè)置調(diào)試標(biāo)志 MimeMessage message = new MimeMessage(sess)。 //實(shí)例化MimeMessage類 (new InternetAddress(from))。 // 給消息對(duì)象設(shè)置發(fā)件人 //設(shè)置收件人 String toArr[]=(,)。 //將以逗號(hào)分隔的收件人字符串轉(zhuǎn)換為數(shù)組 InternetAddress[] to_mail=new InternetAddress[]。 for(int i=0。i。i++){ to_mail[i]=new InternetAddress(toArr[i])。 //將收件人地址轉(zhuǎn)換為InternetAddress類的對(duì)象 } (,to_mail)。 //設(shè)置收件人 (subject)。 //設(shè)置主題 sendTime=new ()。 (sendTime)。 //發(fā)件時(shí)間 (())。 Multipart mul = new MimeMultipart()。 // 新建一個(gè)MimeMultipart對(duì)象來存放多個(gè)BodyPart對(duì)象 BodyPart mdp = new MimeBodyPart()。 // 新建一個(gè)存放信件內(nèi)容的BodyPart對(duì)象 (content, text/html。charset=gbk)。 (mdp)。 // 將含有信件內(nèi)容的BodyPart加入到MimeMulitipart對(duì)象中 /*********************添加附件(用本機(jī)上的文件作為附件)*****************************/ if(!() amp。amp。 path!=null){ mdp=addAttachement(path)。 if(null!=mdp){ (mdp)。 //添加第一個(gè)附件 } } if(!() amp。amp。 path1!=null){ mdp=addAttachement(path1)。 if(null!=mdp){ (mdp)。 //添加第二個(gè)附件 } } /*************************************************************************/ (mul)。 // 把mul作為消息對(duì)象的內(nèi)容 ()。 Transport transport = (smtp)。 // 以smtp方式登錄郵箱,第1個(gè)參數(shù)是發(fā)送郵件用的郵件服務(wù)器SMTP地址,第2個(gè)參數(shù)為用戶名,第3個(gè)參數(shù)為密碼 (mailserver, from, password)。 //建立與郵件服務(wù)器的連接 (message, ())。 //發(fā)送郵件 ()。 insert(s)。 //保存發(fā)送日志 ret = 1。 } catch (Exception e) { (發(fā)送郵件產(chǎn)生的錯(cuò)誤: + ())。 ret = 0。 } return ret。} 接收郵件模塊設(shè)計(jì): 查看收件頁(yè)面設(shè)計(jì)圖收取郵件中主要代碼:// 獲取郵件內(nèi)容 public ListReceiveEmailForm showEmail(String host, String username, String password, String flag) { ListReceiveEmailForm list = new ArrayListReceiveEmailForm()。 try { Store store = connectStore(host, username, password)。// 建立與郵件接收服務(wù)器的連接 POP3Folder folder = (POP3Folder) (inbox)。 ()。 //打開郵件夾 // 查詢發(fā)件人為wgh@ // SearchTerm st=new FromStringTerm(wgh@)。 // Message[] message=(st)。 // 查詢未讀郵件 // Flags flagss=new Flags()。 // FlagTerm st=new FlagTerm(flagss,flag)。 // // Message[] message=(st)。 // ************************************************* FetchProfile profile = new FetchProfile()。 // ()。 // ()。 Message[] message = null。 String str_messageId = queryIsRead(username)。 // 已經(jīng)閱讀的郵件ID組成的字符串 if (!.equals(str_messageId)) { String[] isRead = (,)。 if (0.equals(flag)) { // 未讀郵件 // 生成搜索條件 NotTerm[] arrIsRead = new NotTerm[]。 for (int i = 0。 i 。 i++) { arrIsRead[i] =new NotTerm(new MessageIDTerm(isRead[i]))。 } SearchTerm st = new AndTerm(arrIsRead)。 message = (st)。 (message, profile)。 } else { // 已讀郵件 // 生成搜索條件 MessageIDTerm[] arrIsRead = new MessageIDTerm[]。 for (int i = 0。 i 。 i++) { arrIsRead[i] = new MessageIDTerm(isRead[i])。 } SearchTerm st = new OrTerm(arrIsRead)。 message = (st)。 (message, profile)。 } } else { if (0.equals(flag)) { // 未讀郵件 message = ()。 // 獲取全部郵件 (message, profile)。 } } String mail_content = 。 String mail_attach = 。 Message messageI = null。 /******************************循環(huán)讀取郵件信息******************************/ if(message!=null){ for (int i = 1。 i = 0。 i) { MimeMessage m = (MimeMessage) message[i]。 ReceiveEmailForm f = new ReceiveEmailForm()。 messageI = message[i]。 (())。 // 郵件ID (()[0].toString())。 // 發(fā)件人 /*************獲取郵件主題**********************************************/ MimeMessage part=(MimeMessage) message[i]。 String head=(SUBJECT)[0]。 //獲取郵件的頭 if(().startsWith(=?gb)){ //獲取GBK或GB2312編碼的郵件主題 (())。 }else{ (new String((
點(diǎn)擊復(fù)制文檔內(nèi)容
教學(xué)課件相關(guān)推薦
文庫(kù)吧 www.dybbs8.com
備案圖片鄂ICP備17016276號(hào)-1