這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)利用Struts怎么實現(xiàn)一個文件上傳功能,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
創(chuàng)新互聯(lián)公司是由多位在大型網(wǎng)絡(luò)公司、廣告設(shè)計公司的優(yōu)秀設(shè)計人員和策劃人員組成的一個具有豐富經(jīng)驗的團(tuán)隊,其中包括網(wǎng)站策劃、網(wǎng)頁美工、網(wǎng)站程序員、網(wǎng)頁設(shè)計師、平面廣告設(shè)計師、網(wǎng)絡(luò)營銷人員及形象策劃。承接:成都網(wǎng)站制作、網(wǎng)站設(shè)計、網(wǎng)站改版、網(wǎng)頁設(shè)計制作、網(wǎng)站建設(shè)與維護(hù)、網(wǎng)絡(luò)推廣、數(shù)據(jù)庫開發(fā),以高性價比制作企業(yè)網(wǎng)站、行業(yè)門戶平臺等全方位的服務(wù)。
1.在jsp文件中進(jìn)行定義
<form action="/StrutsFileUpAndDown/register.do" method="post" enctype="multipart/form-data"> 名字:<input type="text" name="name" /> 頭像:<input type="file" name="file"/> <input type="submit" value="注冊用戶"> </form>
2.在Form表單中定義FormFile
/* * Generated by MyEclipse Struts * Template path: templates/java/JavaClass.vtl */ package com.yourcompany.struts.form; import javax.servlet.http.HttpServletRequest; import org.apache.struts.action.ActionForm; import org.apache.struts.action.ActionMapping; import org.apache.struts.upload.FormFile; /** * MyEclipse Struts * Creation date: 08-24-2017 * * XDoclet definition: * @struts.form name="userForm" */ public class UserForm extends ActionForm { /* * Generated Methods */ private String username; private FormFile file; public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } public FormFile getFile() { return file; } public void setFile(FormFile file) { this.file = file; } }
3.利用struts文件進(jìn)行關(guān)聯(lián)Form,關(guān)聯(lián)以后
1)利用表單實例進(jìn)行獲取FormFile實例,在獲取以后,我們可以通過FormFile獲取上傳文件的各種信息
UserForm userForm = (UserForm) form; String username = userForm.getUsername(); FormFile file = userForm.getFile(); //通過formFile可以獲取關(guān)于用戶上傳文件的各種信息 //用于獲取文件名字 String fileName = file.getFileName(); //用于獲取文件大小 int fileSize = file.getFileSize();
2)通過FormFile實例獲取輸入流,創(chuàng)建一個輸出流,并且在代碼中獲取tomcat服務(wù)器的絕對路徑
try { //獲取輸入流 is = file.getInputStream(); //得到輸出流 //1.得到file文件夾,上傳到tomcat服務(wù)器后的絕對路徑(file文件為新創(chuàng)建的文件夾) String filePath = this.getServlet().getServletContext().getRealPath("/file"); //兩個"//"的其中一個"/"為轉(zhuǎn)義符 os=new FileOutputStream(filePath+"\\"+fileName); int len=0;//表示讀取的字節(jié) //做一個緩存,防止文件過大而造成錯誤 byte[] buff=new byte[1024]; while((len=is.read(buff))!=-1) { os.write(buff,0,len); } is.close(); os.close(); }
上述就是小編為大家分享的利用Struts怎么實現(xiàn)一個文件上傳功能了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
名稱欄目:利用Struts怎么實現(xiàn)一個文件上傳功能
URL鏈接:http://m.rwnh.cn/article12/jipsgc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供全網(wǎng)營銷推廣、網(wǎng)站內(nèi)鏈、企業(yè)網(wǎng)站制作、網(wǎng)站設(shè)計公司、網(wǎng)站設(shè)計、電子商務(wù)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)