溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Flex上傳文件功能該如何實現(xiàn)

發(fā)布時間:2021-11-24 10:22:49 來源:億速云 閱讀:172 作者:柒染 欄目:編程語言

這期內(nèi)容當中小編將會給大家?guī)碛嘘P(guān)Flex上傳文件功能該如何實現(xiàn),文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

寫過很多文件上傳的功能,包括AJAX實現(xiàn)動態(tài)監(jiān)控上傳進度的,現(xiàn)在看到了實現(xiàn)Flex文件上傳功能,還真是很方便,這里和大家分享一下。

Flex上傳文件功能

寫過很多文件上傳的功能,包括AJAX實現(xiàn)動態(tài)監(jiān)控上傳進度的,現(xiàn)在看到了實現(xiàn)Flex文件上傳功能,還真是很方便,沒什么好說的,F(xiàn)lex上傳文件代碼:

upload.mxml

<?xmlversionxmlversion="1.0"encoding="utf-8"?> <mx:Applicationxmlns:mxmx:Applicationxmlns:mx=http://www.adobe.com/2006/mxmlcreationComplete="init()"layout="absolute"width="497"height="136"backgroundGradientAlphas="[1.0,1.0]"backgroundGradientColors="[#F2F8F8,#45E7E5]"> <mx:Scriptsourcemx:Scriptsource="upload.as"></mx:Script> <mx:Style> .myfont{font-size:13pt}  </mx:Style> <mx:Buttonxmx:Buttonx="10"y="95"label="上傳文件"click="pickfile()"styleName="myfont"/> <mx:Labelxmx:Labelx="10"y="10"text="文件上傳"styleName="myfont"/> <mx:ProgressBarxmx:ProgressBarx="10"y="40"width="457"themeColor="#F20D7A"minimum="0"mode="manual"maximum="100"id="progress1"label="當前進度:0%"styleName="myfont"fontWeight="normal"/> <mx:Labelxmx:Labelx="146"y="98"width="321"id="lbProgress"styleName="myfont"textAlign="right"/> </mx:Application>

upload.as

1//ActionScriptfile  2importflash.events.Event;  3importflash.net.FileFilter;  4importflash.net.FileReference;  5privatevarfileRef:FileReference=newFileReference();  6privatefunctioninit():void{  7  8}  9  10privatefunctionpickfile():void{  11varimageTypes:FileFilter=newFileFilter("圖片(*.jpg,*.jpeg,*.gif,*.png)","*.jpg;*.jpeg;*.gif;*.png");  12vartextTypes:FileFilter=newFileFilter("文本文件(*.txt","*.txt;");  13varofficeType:FileFilter=newFileFilter("Office文件(*.doc,*.xls","*.doc;*.xls");  14varanyType:FileFilter=newFileFilter("所有文件(*.*)","*.*");  15varallTypes:Array=newArray(imageTypes,textTypes,officeType,anyType);  16fileRef.addEventListener(Event.SELECT,selectHandler);  17fileRef.addEventListener(Event.COMPLETE,completeHandler);  18fileRef.addEventListener(ProgressEvent.PROGRESS,progressHandler);  19fileRef.addEventListener("ioError",ioerrorHandler);  20try{  21varsuccess:Boolean=fileRef.browse(allTypes);  22}catch(error:Error){  23trace("Unabletobrowseforfiles."+error.toString());  24}  25}  26privatefunctionioerrorHandler(event:Event):void{  27trace("Unabletouploadfile."+event.toString());  28}  29privatefunctionprogressHandler(event:ProgressEvent):void{  30lbProgress.text="已上傳"+(event.bytesLoaded/1024).toFixed(2)+"K,共"+(event.bytesTotal/1024).toFixed(2)+"K";  31varproc:uint=event.bytesLoaded/event.bytesTotal*100;  32progress1.setProgress(proc,100);  33progress1.label="當前進度:"+""+proc+"%";  34  35}  36privatefunctionselectHandler(event:Event):void{  37varrequest:URLRequest=newURLRequest("http://localhost:9080/upload/upload.jsp")  38try  39{  40fileRef.upload(request);  41}  42catch(error:Error)  43{  44trace("Unabletouploadfile."+error.toString());  45}  46}  47privatefunctioncompleteHandler(event:Event):void{  48trace("uploaded");  49}

Flex上傳文件效果圖:


Flex上傳文件功能該如何實現(xiàn)

上述就是小編為大家分享的Flex上傳文件功能該如何實現(xiàn)了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI