主頁 > 知識庫 > jspsmart文件上傳與郵件發(fā)送的實(shí)例

jspsmart文件上傳與郵件發(fā)送的實(shí)例

熱門標(biāo)簽:汝南縣地圖標(biāo)注app 地圖標(biāo)注專業(yè)和非專業(yè) 山東ai外呼電銷機(jī)器人好用嗎 智能電話機(jī)器人銷售話術(shù) 福建電銷貓機(jī)器人收費(fèi) 湖北地圖標(biāo)注公司 四川正規(guī)外呼系統(tǒng)軟件 甘肅銷售電銷機(jī)器人公司 外呼直播語音系統(tǒng)

1、jspsmart文件上傳(普通表單,帶有普通表單域、若干個(gè)文件選擇域)

頁面:

復(fù)制代碼 代碼如下:

form class="form-horizontal" id=“estForm” action="/tools/toolServlet?type=est" method="post" enctype="multipart/form-data">
div class="control-group">
label class="control-label" for="email">Email/label>
div class="controls">
input type="text" id="email" name="email" placeholder="Email" onblur="checkEmail()">
span class="help-inline">/span>
/div>
/div>
div class="control-group">
label class="control-label" for="file">File/label>
div class="controls">
input type="file" name="file" id="file" onchange="getFileInfo()"/>
span class="help-inline">/span>
/div>
/div>

!-- 隱藏文件域 begin
div class="control-group" id="hiddenFileDiv" style="display: none;">
label class="control-label" for="file">File/label>
div class="controls">
input type="file" name="file1" id="file1" />
span class="help-inline">/span>
/div>
/div>-->
!-- 隱藏文件域 end

div class="control-group">
label class="control-label" for="file">crossmatch/label>
div class="controls">
select name="crossmatch" id="crossmatch">
option value="Y">Y/option>
option value="N">N/option>
/select>
span class="help-inline">/span>
/div>
/div>-->
div class="control-group">
div class="controls">
!-- a href="javascript:void(0);" id="upload" class="btn">submit/a>-->
button type="submit" class="btn" id="upload">submit/button>
button type="reset" class="btn" id="reset">reset/button>
/div>
/div>
/form>


處理類:
復(fù)制代碼 代碼如下:

/**
* 文件上傳
* @param req
* @param resp
* @throws ServletException
* @throws IOException
*/
protected void doUpload(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
boolean flag = true;
String email = "";
String dataId = String.valueOf(new Date().getTime());
//生成dataId目錄
String newPath = estPath + "/" + dataId;
createDir(newPath);
//生成data目錄
newPath = estPath + "/" + dataId + "/data";
createDir(newPath);
//生成data目錄
newPath = estPath + "/" + dataId + "/result";
createDir(newPath);
try{
DiskFileItemFactory factory = new DiskFileItemFactory();
ServletFileUpload upload = new ServletFileUpload(factory);
upload.setHeaderEncoding("UTF-8");
ListFileItem> list = upload.parseRequest(req);
for(FileItem item : list){
if(!(item.isFormField())){
System.err.println("item name:" + item.getName());
if((item!=null)(item.getName()!=null)(!(item.getName().equals("")))){
String uploadFilename = item.getName();
//處理文件上傳
InputStream in = item.getInputStream();
int len = 0;
byte[] b = new byte[1024];
newPath = estPath + "/" + dataId + "/data/";
FileOutputStream out = new FileOutputStream(newPath + uploadFilename);
while((len=in.read(b))>0){
out.write(b, 0, len);
}
in.close();
out.close();
item.delete(); //刪除item對應(yīng)的臨時(shí)文件
}
}else{
String fValue = item.getString();
if(fValue.indexOf("@")!=-1){
//郵箱
email = fValue;
System.err.println("email:" + email);
}
}
}
}catch (Exception e) {
flag = false;
System.err.println("文件上傳失敗!" + e);
}
}
req.setAttribute("flag", flag);
req.getRequestDispatcher("/view/est.jsp").forward(req, resp);
}

2、郵件發(fā)送:
復(fù)制代碼 代碼如下:

public class EmailAttachService {
private static String host = "smtp.163.com";
private static String username = "";
private static String password = "";
private static String mailSubject = "";
public static Vector vfile = new Vector();
//添加附件
public static void addAttachemnt(String fPath){
vfile.add(fPath);
}
//發(fā)送郵件
public static void sendMail(String emailTo,String msg) {
// vfile 附件文件集合
try {
Properties props = new Properties();// 獲取系統(tǒng)環(huán)境
Authenticator auth = new EmailAuthenticator(username, password);// 進(jìn)行郵件服務(wù)用戶認(rèn)證
props.put("mail.smtp.host", host);
props.put("mail.smtp.auth", "true");

Session session = Session.getDefaultInstance(props, auth);
// 設(shè)置session,和郵件服務(wù)器進(jìn)行通訊
MimeMessage message = new MimeMessage(session);
// 設(shè)置郵件發(fā)送者的地址
message.setFrom(new InternetAddress(username));
// 設(shè)置郵件接收的地址
message.addRecipient(Message.RecipientType.TO, new InternetAddress(emailTo));
// 設(shè)置郵件主題
message.setSubject(mailSubject);
// 構(gòu)造Multipart
Multipart mp = new MimeMultipart();
// 向Multipart添加正文
MimeBodyPart content = new MimeBodyPart();
content.setContent(msg, "text/html;charset=gb2312");
mp.addBodyPart(content);
// 向Multipart添加附件
Enumeration efile = vfile.elements();
while(efile.hasMoreElements()){
MimeBodyPart fattach = new MimeBodyPart();
String fName = efile.nextElement().toString();
FileDataSource fds = new FileDataSource(fName);
fattach.setDataHandler(new DataHandler(fds));
fattach.setFileName(MimeUtility.encodeWord(fds.getName(), "GB2312",null));
mp.addBodyPart(fattach);
}
vfile.removeAllElements();
message.setContent(mp);
// 設(shè)置郵件發(fā)送時(shí)期
message.setSentDate(new Date());
message.saveChanges();
//發(fā)送郵件
Transport.send(message);
} catch (Exception e) {
e.printStackTrace();
}
}

您可能感興趣的文章:
  • 郵件發(fā)送簡單例子-jsp文件
  • JSP發(fā)送郵件實(shí)例
  • node.js使用nodemailer發(fā)送郵件實(shí)例
  • Nodejs中讀取中文文件編碼問題、發(fā)送郵件和定時(shí)任務(wù)實(shí)例
  • 純javascript實(shí)現(xiàn)自動(dòng)發(fā)送郵件
  • 基于Node.js實(shí)現(xiàn)nodemailer郵件發(fā)送

標(biāo)簽:南充 肇慶 吳忠 梅州 白銀 臨沂 昌都 黔東

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《jspsmart文件上傳與郵件發(fā)送的實(shí)例》,本文關(guān)鍵詞  jspsmart,文件,上傳,與,郵件,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《jspsmart文件上傳與郵件發(fā)送的實(shí)例》相關(guān)的同類信息!
  • 本頁收集關(guān)于jspsmart文件上傳與郵件發(fā)送的實(shí)例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章