真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

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

10年的臨安網(wǎng)站建設(shè)經(jīng)驗,針對設(shè)計、前端、開發(fā)、售后、文案、推廣等六對一服務(wù),響應(yīng)快,48小時及時工作處理。營銷型網(wǎng)站建設(shè)的優(yōu)勢是能夠根據(jù)用戶設(shè)備顯示端的尺寸不同,自動調(diào)整臨安建站的顯示方式,使網(wǎng)站能夠適用不同顯示終端,在瀏覽器中調(diào)整網(wǎng)站的寬度,無論在任何一種瀏覽器上瀏覽網(wǎng)站,都能展現(xiàn)優(yōu)雅布局與設(shè)計,從而大程度地提升瀏覽體驗。成都創(chuàng)新互聯(lián)從事“臨安網(wǎng)站設(shè)計”,“臨安網(wǎng)站推廣”以來,每個客戶項目都認(rèn)真落實執(zhí)行。

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

Flex上傳文件功能

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

upload.mxml

    .myfont{font-size:13pt}       

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="當(dāng)前進(jìn)度:"+""+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)了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


網(wǎng)站欄目:Flex上傳文件功能該如何實現(xiàn)
鏈接地址:http://weahome.cn/article/psjddd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部