fileupload上傳下載

fileupload上傳下載

ID:40525198

大?。?0.50 KB

頁數(shù):3頁

時間:2019-08-04

fileupload上傳下載_第1頁
fileupload上傳下載_第2頁
fileupload上傳下載_第3頁
資源描述:

《fileupload上傳下載》由會員上傳分享,免費在線閱讀,更多相關內(nèi)容在教育資源-天天文庫。

1、Fileupload使用上傳:try{//CheckthatwehaveafileuploadrequestbooleanisMultipart=ServletFileUpload.isMultipartContent(request);if(isMultipart){//Createafactoryfordisk-basedfileitemsFileItemFactoryfactory=newDiskFileItemFactory();//CreateanewfileuploadhandlerServletFil

2、eUploadupload=newServletFileUpload(factory);//ParsetherequestList/*FileItem*/items=upload.parseRequest(request);for(FileItemfileItem:items){if(!fileItem.isFormField()){System.out.println(fileItem.getFieldName());System.out.println(fileItem.getName())

3、;System.out.println(fileItem.getSize());//System.out.println();//getrealpathoftomactserver.Stringpath=getServletContext().getRealPath("\");//System.out.println(path);FilenewFile=newFile(path+"upfile\"+fileItem.getName());OutputStreamoutput=null;try{output=ne

4、wFileOutputStream(newFile);output.write(fileItem.get());output.flush();}catch(Exceptione){e.printStackTrace();}finally{if(output!=null){output.close();}}UpFileDAOupfileDAO=newUpFileDAO();UpFileVOupfile=newUpFileVO();upfile.setFileName(fileItem.getName());upfil

5、e.setFileSize(fileItem.getSize());upfile.setAccess(0);if(!upfileDAO.insertUpFile(upfile)){newFile.delete();}}else{//System.out.println();if("expireTime".equals(fileItem.getFieldName())){System.out.println(fileItem.getString());}}}}}catch(FileUploadExceptione){

6、//TODOAuto-generatedcatchblocke.printStackTrace();}下載:StringfileName=request.getParameter("fileName");Stringpath=getServletContext().getRealPath("\");//System.out.println(path);FilenewFile=newFile(path+"upfile\"+fileName);if(newFile.exists()){InputStreaminpu

7、t=null;OutputStreamoutput=null;try{input=newFileInputStream(newFile);byte[]tempBytes=newbyte[input.available()];input.read(tempBytes);response.setContentType("application/x-msdownload");response.setHeader("Content-Disposition","attachment;filename="+fileName);

8、output=response.getOutputStream();output.write(tempBytes);output.flush();}catch(Exceptione){//TODOAuto-generatedcatchblocke.printStackTrace();}finally{if(input!=null){input.close()

當前文檔最多預覽五頁,下載文檔查看全文

此文檔下載收益歸作者所有

當前文檔最多預覽五頁,下載文檔查看全文
溫馨提示:
1. 部分包含數(shù)學公式或PPT動畫的文件,查看預覽時可能會顯示錯亂或異常,文件下載后無此問題,請放心下載。
2. 本文檔由用戶上傳,版權歸屬用戶,天天文庫負責整理代發(fā)布。如果您對本文檔版權有爭議請及時聯(lián)系客服。
3. 下載前請仔細閱讀文檔內(nèi)容,確認文檔內(nèi)容符合您的需求后進行下載,若出現(xiàn)內(nèi)容與標題不符可向本站投訴處理。
4. 下載文檔時可能由于網(wǎng)絡波動等原因無法下載或下載錯誤,付費完成后未能成功下載的用戶請聯(lián)系客服處理。