主頁 > 知識(shí)庫 > 利用jsp+Extjs實(shí)現(xiàn)動(dòng)態(tài)顯示文件上傳進(jìn)度

利用jsp+Extjs實(shí)現(xiàn)動(dòng)態(tài)顯示文件上傳進(jìn)度

熱門標(biāo)簽:電銷機(jī)器人是有一些什么技術(shù) 四川保險(xiǎn)智能外呼系統(tǒng)商家 地圖標(biāo)注線上教程 北票市地圖標(biāo)注 電銷機(jī)器人好賣么 杭州ai語音電銷機(jī)器人功能 商洛電銷 杭州語音電銷機(jī)器人軟件 高德地圖標(biāo)注樣式

需求來源是這樣的:上傳一個(gè)很大的excel文件到server, server會(huì)解析這個(gè)excel, 然后一條一條的插入到數(shù)據(jù)庫,整個(gè)過程要耗費(fèi)很長(zhǎng)時(shí)間,因此當(dāng)用戶點(diǎn)擊上傳之后,需要顯示一個(gè)進(jìn)度條,并且能夠根據(jù)后臺(tái)的接收的數(shù)據(jù)量和處理的進(jìn)度及時(shí)更新進(jìn)度條。

分析:后臺(tái)需要兩個(gè)組件,uploadController.jsp用來接收并且處理數(shù)據(jù),它會(huì)動(dòng)態(tài)的把進(jìn)度信息放到session,另一個(gè)組件processController.jsp用來更新進(jìn)度條;當(dāng)用戶點(diǎn)“上傳”之后,form被提交給uploadController.jsp,同時(shí)用js啟動(dòng)一個(gè)ajax請(qǐng)求到processController.jsp,ajax用獲得的進(jìn)度百分比更新進(jìn)度條的顯示進(jìn)度,而且這個(gè)過程每秒重復(fù)一次;這就是本例的基本工作原理。

現(xiàn)在的問題是server接收數(shù)據(jù)的時(shí)候怎么知道接收的數(shù)據(jù)占總數(shù)據(jù)的多少? 如果我們從頭自己寫一個(gè)文件上傳組件,那這個(gè)問題很好解決,關(guān)鍵是很多時(shí)候我們都是用的成熟的組件,比如apache commons fileupload; 比較幸運(yùn)的是,apache早就想到了這個(gè)問題,所以預(yù)留了接口可以用來獲取接收數(shù)據(jù)的百分比;因此我就用apache commons fileupload來接收上傳文件。

uploadController.jsp:

%@ page language="java" import="java.util.*, java.io.*, org.apache.commons.fileupload.*, org.apache.commons.fileupload.disk.DiskFileItemFactory, org.apache.commons.fileupload.servlet.ServletFileUpload" pageEncoding="utf-8"%>
%
//注意上面的import的jar包是必須的
//下面是使用apache commons fileupload接收上傳文件;
FileItemFactory factory = new DiskFileItemFactory();
ServletFileUpload upload = new ServletFileUpload(factory);
//因?yàn)閮?nèi)部類無法引用request,所以要實(shí)現(xiàn)一個(gè)。
class MyProgressListener implements ProgressListener{
	private HttpServletRequest request = null;
	MyProgressListener(HttpServletRequest request){
		this.request = request;
	}
	public void update(long pBytesRead, long pContentLength, int pItems) {
		double percentage = ((double)pBytesRead/(double)pContentLength);
		//上傳的進(jìn)度保存到session,以便processController.jsp使用
		request.getSession().setAttribute("uploadPercentage", percentage);
	}
}
upload.setProgressListener(new MyProgressListener(request));
List items = upload.parseRequest(request);
Iterator iter = items.iterator();
while (iter.hasNext()) {
  FileItem item = (FileItem) iter.next();
  if (item.isFormField()){
  	
  } else {
    //String fieldName = item.getFieldName();
    String fileName = item.getName();
    //String contentType = item.getContentType();
    System.out.println();
    boolean isInMemory = item.isInMemory();
    long sizeInBytes = item.getSize();
    File uploadedFile = new File("c://" + System.currentTimeMillis() + fileName.substring(fileName.lastIndexOf(".")));
    item.write(uploadedFile);
  }
}
out.write("{success:true,msg:'保存上傳文件數(shù)據(jù)并分析Excel成功!'}");
out.flush();
%>


processController.jsp:

%@ page language="java" import="java.util.*" contentType = "text/html;charset=UTF-8" pageEncoding="utf-8"%>
%
	//注意上面的抬頭是必須的。否則會(huì)有ajax亂碼問題。
	//從session取出uploadPercentage并送回瀏覽器
	Object percent = request.getSession().getAttribute("uploadPercentage");
	String msg = "";
	double d = 0;
	if(percent==null){
		d = 0;
	}
	else{
		d = (Double)percent;
		//System.out.println("+++++++processController: " + d);
	}
	if(d1){
	//d1代表正在上傳,
		msg = "正在上傳文件...";
		out.write("{success:true, msg: '"+msg+"', percentage:'" + d + "', finished: false}");
	}
	else if(d>=1){
		//d>1 代表上傳已經(jīng)結(jié)束,開始處理分析excel,
		//本例只是模擬處理excel,在session中放置一個(gè)processExcelPercentage,代表分析excel的進(jìn)度。
		msg = "正在分析處理Excel...";
		String finished = "false";
		double processExcelPercentage = 0.0;
		Object o = request.getSession().getAttribute("processExcelPercentage");
		if(o==null){
			processExcelPercentage = 0.0;
			request.getSession().setAttribute("processExcelPercentage", 0.0);
			
		}
		else{
			//模擬處理excel,百分比每次遞增0.1 
			processExcelPercentage = (Double)o + 0.1;
			request.getSession().setAttribute("processExcelPercentage", processExcelPercentage);
			if(processExcelPercentage>=1){
				//當(dāng)processExcelPercentage>1代表excel分析完畢。
				request.getSession().removeAttribute("uploadPercentage");
				request.getSession().removeAttribute("processExcelPercentage");
				//客戶端判斷是否結(jié)束的標(biāo)志
				finished = "true";
			}
		}
		out.write("{success:true, msg: '"+msg+"', percentage:'" + processExcelPercentage + "', finished: "+ finished +"}");
		//注意返回的數(shù)據(jù),success代表狀態(tài)
		//percentage是百分比
		//finished代表整個(gè)過程是否結(jié)束。
	}
	out.flush();
%>


表單頁面upload.html:

html>
	head>
		meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
		title>File Upload Field Example/title>
		link rel="stylesheet" type="text/css"
			href="ext/resources/css/ext-all.css" />
		script type="text/javascript" src="ext/adapter/ext/ext-base.js"> /script>
		script type="text/javascript" src="ext/ext-all.js"> /script>
		style>
/style>
	/head>
	body>
		a >sunxing007/a>
		div id="form">/div>
	/body>
	script>
var fm = new Ext.FormPanel({
	title: '上傳excel文件',
	url:'uploadController.jsp?t=' + new Date(),
	autoScroll:true,
	applyTo: 'form',
	height: 120,
	width: 500,
	frame:false,
	fileUpload: true,
	defaultType:'textfield',
	labelWidth:200,
	items:[{
		xtype:'field',
		fieldLabel:'請(qǐng)選擇要上傳的Excel文件 ',
		allowBlank:false,
		inputType:'file',
		name:'file'
	}],
	buttons: [{
		text: '開始上傳',
		handler: function(){
			//點(diǎn)擊'開始上傳'之后,將由這個(gè)function來處理。
		  if(fm.form.isValid()){//驗(yàn)證form, 本例略掉了
		  //顯示進(jìn)度條
				Ext.MessageBox.show({ 
				  title: '正在上傳文件', 
				  //msg: 'Processing...', 
				  width:240, 
				  progress:true, 
				  closable:false, 
				  buttons:{cancel:'Cancel'} 
				}); 
				//form提交
    fm.getForm().submit();
    //設(shè)置一個(gè)定時(shí)器,每500毫秒向processController發(fā)送一次ajax請(qǐng)求
		  var i = 0;
		  var timer = setInterval(function(){
		  		//請(qǐng)求事例
			   Ext.Ajax.request({
			   //下面的url的寫法很關(guān)鍵,我為了這個(gè)調(diào)試了好半天
			   //以后凡是在ajax的請(qǐng)求的url上面都要帶上日期戳,
			   //否則極有可能每次出現(xiàn)的數(shù)據(jù)都是一樣的,
			   //這和瀏覽器緩存有關(guān)
						url: 'processController.jsp?t=' + new Date(),
						method: 'get',
						//處理ajax的返回?cái)?shù)據(jù)
						success: function(response, options){
							status = response.responseText + " " + i++;
							var obj = Ext.util.JSON.decode(response.responseText);
							if(obj.success!=false){
								if(obj.finished){
									clearInterval(timer);	
									//status = response.responseText;
									Ext.MessageBox.updateProgress(1, 'finished', 'finished');
									Ext.MessageBox.hide();
								}
								else{
									Ext.MessageBox.updateProgress(obj.percentage, obj.msg);	
								}
							}
						},
						failure: function(){
							clearInterval(timer);
							Ext.Msg.alert('錯(cuò)誤', '發(fā)生錯(cuò)誤了。');
						} 
					});
		  }, 500);
		    
		  }
		  else{
		  	Ext.Msg.alert("消息","請(qǐng)先選擇Excel文件再上傳.");
		  }
		} 
	}]
});
/script>
/html>


把這三個(gè)文件放到tomcat/webapps/ROOT/, 同時(shí)把ext的主要文件也放到這里,啟動(dòng)tomcat即可測(cè)試:http://localhost:8080/upload.html

我的資源里面有完整的示例文件:點(diǎn)擊下載, 下載zip文件之后解壓到tomcat/webapps/ROOT/即可測(cè)試。

最后需要特別提醒,因?yàn)橛玫搅薬pache 的fileUpload組件,因此,需要把common-fileupload.jar放到ROOT/WEB-INF/lib下。
 

您可能感興趣的文章:
  • Jsp頁面實(shí)現(xiàn)文件上傳下載類代碼
  • jsp中點(diǎn)擊圖片彈出文件上傳界面及預(yù)覽功能的實(shí)現(xiàn)
  • jsp實(shí)現(xiàn)文件上傳下載的程序示例
  • Jsp+Servlet實(shí)現(xiàn)文件上傳下載 文件上傳(一)
  • AJAX和JSP實(shí)現(xiàn)的基于WEB的文件上傳的進(jìn)度控制代碼
  • jsp文件上傳與下載實(shí)例代碼
  • jsp中點(diǎn)擊圖片彈出文件上傳界面及實(shí)現(xiàn)預(yù)覽實(shí)例詳解
  • jsp 文件上傳瀏覽,支持ie6,ie7,ie8
  • servlet+JSP+mysql實(shí)現(xiàn)文件上傳的方法
  • JSP實(shí)現(xiàn)文件上傳功能

標(biāo)簽:丹東 貴州 紅河 云浮 江西 青島 西藏 宿州

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