婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > jsp文件上傳與下載實例代碼

jsp文件上傳與下載實例代碼

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

public class UploadServlet extends HttpServlet{
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
doPost(req, resp);
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
SmartUpload myupload = new SmartUpload();
ServletConfig config = getServletConfig();
myupload.initialize(config,req,resp);
resp.setContentType("text/html");
resp.setCharacterEncoding("utf-8");
PrintWriter out = resp.getWriter();
out.println("h2>處理上傳的文件/h2>");
out.println("hr>");

try {
myupload.setMaxFileSize(1024*1024);
myupload.setTotalMaxFileSize(5*1024*1024);

myupload.setAllowedFilesList("doc,txt,jpg,gif");
myupload.setDeniedFilesList("exe,bat,jsp,htm,html");
myupload.upload();//上傳文件,此項是必須的
int count = myupload.getFiles().getCount();
Request myRequest = myupload.getRequest();
String rndFilename,fileExtName,fileName,filePathName;
Date dt = null;
SimpleDateFormat fmt = new SimpleDateFormat("yyyyMMdd");
//一一提取上傳文件信息,同時可保持文件
for(int i = 0; i count; i++){
File file = myupload.getFiles().getFile(i);
if(file.isMissing())
continue;
fileName = new String(file.getFileName().getBytes(),"utf-8");//獲取文件名
filePathName = new String(file.getFilePathName().getBytes(),"utf-8");
fileExtName = file.getFileExt();
dt = new Date(System.currentTimeMillis());
Thread.sleep(100);
rndFilename = fmt.format(dt)+i+"."+fileExtName;
out.println("第"+(i+1)+"個文件的文件信息:br>");
out.println(" 文件名為:"+fileName+"br>");
out.println(" 文件擴(kuò)展名為:"+fileExtName+"br>");
out.println(" 文件全名:"+filePathName+"br>");
out.println(" 文件大小:"+file.getSize()/1024+"kbbr>");
//創(chuàng)建文件保存位置
ServletContext context = req.getServletContext();
String savePath = context.getRealPath("/upload/");
java.io.File folder = new java.io.File(savePath);
if(!folder.exists()){
folder.mkdirs();
}
out.println(" 文件保存路徑:"+savePath);
file.saveAs(savePath+"/"+rndFilename,SmartUpload.SAVE_PHYSICAL);
}

} catch (Exception e) {
out.println("文件上傳失敗!!!!");
e.printStackTrace();
}
out.flush();
out.close();

}
}

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

%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
%@ page import="com.jspsmart.upload.*" %>
%
//設(shè)定請求編碼方式,否則遇到中文就會亂碼
request.setCharacterEncoding("utf-8");
%>
!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
html>
head>
meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
title>上傳文件實例/title>
script type="text/javascript" src="js/jquery-1.8.1.js">/script>
script type="text/javascript">
$(function(){
$("#number").change(function(){
var number = $("#number").attr("value");
$("#files").html("");
for(var i = 0; i number; i++){
$("#files").append("input type='file' name='file''"+i+"'>br/>");
}
});
});
/script>
/head>
body>
h2>上傳文件實例/h2>
請選擇上傳文件數(shù)量:
select id="number">
option value="1" selected="selected">1/option>
option value="2">2/option>
option value="3">3/option>
option value="4">4/option>
option value="5">5/option>
/select>
form action="UploadServlet" method="post" enctype="multipart/form-data">
div id="files">/div>
input type="submit" value="提交"/>
/form>
/body>
/html>

文件下載
復(fù)制代碼 代碼如下:

%
response.setContentType("application/x-download");//設(shè)置為下載application/x-download
String filedownload = "/要下載的文件名";//即將下載的文件的相對路徑
String filedisplay = "最終要顯示給用戶的保存文件名";//下載文件時顯示的文件保存名稱
String filenamedisplay = URLEncoder.encode(filedisplay,"UTF-8");
response.addHeader("Content-Disposition","attachment;filename=" + filedisplay);
try
{
RequestDispatcher dis = application.getRequestDispatcher(filedownload);
if(dis!= null)
{
dis.forward(request,response);
}
response.flushBuffer();
}
catch(Exception e)
{
e.printStackTrace();
}
finally
{
}
%>
您可能感興趣的文章:
  • Jsp頁面實現(xiàn)文件上傳下載類代碼
  • jsp中點擊圖片彈出文件上傳界面及預(yù)覽功能的實現(xiàn)
  • jsp實現(xiàn)文件上傳下載的程序示例
  • Jsp+Servlet實現(xiàn)文件上傳下載 文件上傳(一)
  • AJAX和JSP實現(xiàn)的基于WEB的文件上傳的進(jìn)度控制代碼
  • jsp中點擊圖片彈出文件上傳界面及實現(xiàn)預(yù)覽實例詳解
  • 利用jsp+Extjs實現(xiàn)動態(tài)顯示文件上傳進(jìn)度
  • jsp 文件上傳瀏覽,支持ie6,ie7,ie8
  • servlet+JSP+mysql實現(xiàn)文件上傳的方法
  • JSP實現(xiàn)文件上傳功能

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

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《jsp文件上傳與下載實例代碼》,本文關(guān)鍵詞  jsp,文件,上傳,與,下載,實例,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《jsp文件上傳與下載實例代碼》相關(guān)的同類信息!
  • 本頁收集關(guān)于jsp文件上傳與下載實例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    主站蜘蛛池模板: 寿阳县| 锦州市| 亚东县| 湘乡市| 安徽省| 屏山县| 海林市| 漾濞| 平江县| 彭山县| 桦甸市| 灵山县| 南华县| 白银市| 华宁县| 抚宁县| 黄冈市| 长丰县| 昌乐县| 汤阴县| 大渡口区| 平顺县| 晋城| 邓州市| 凤庆县| 邯郸市| 连云港市| 桐庐县| 洛宁县| 台山市| 修文县| 靖安县| 清涧县| 泌阳县| 吕梁市| 八宿县| 平度市| 靖宇县| 闽侯县| 百色市| 柘城县|