這篇文章主要介紹php中swfupload中文亂碼的解決方法,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)建站成都網(wǎng)站建設(shè)按需求定制制作,是成都網(wǎng)站建設(shè)公司,為人造霧提供網(wǎng)站建設(shè)服務(wù),有成熟的網(wǎng)站定制合作流程,提供網(wǎng)站定制設(shè)計服務(wù):原型圖制作、網(wǎng)站創(chuàng)意設(shè)計、前端HTML5制作、后臺程序開發(fā)等。成都網(wǎng)站建設(shè)熱線:13518219792
方法:1、利用“fileName=new String(fileName.getBytes("UTF-8"),"GBK")”語句;2、利用“fileName=URLDecoder.decode(fileName,"UTF-8")”語句。
本教程操作環(huán)境:windows7系統(tǒng)、PHP7.1版,DELL G3電腦
SWFUpload中文亂碼問題,在網(wǎng)上搜的帖子,關(guān)于這個問題的解決方法有很多。
第一種:fileName= new String(fileName.getBytes("UTF-8"),"GBK");
用這種方式能解決大部分亂碼,但如果文件名中有特殊字符和標(biāo)點符號有時候會轉(zhuǎn)不過來。
第二種:我使用的是這種辦法,測試已經(jīng)通過
/**在設(shè)置時需要設(shè)置一下上傳事件 *upload_start_handler : UploadStart, *動態(tài)傳參數(shù),解決文件名中文亂碼問題 **/ function uploadStart(file) { try { /* I don't want to do any file validation or anything, I'll just update the UI and return true to indicate that the upload should start */ var progress = new FileProgress(file, this.customSettings.progressTarget); //progress.setStatus("Uploading..."); progress.setStatus("上傳中..."); progress.toggleCancel(true, this); this.setPostParams({ 'fileName':encodeURIComponent(file.name) }); } catch (ex) { } return true; }
在action中使用
fileName = URLDecoder.decode(fileName,"UTF-8");
以上是“php中swfupload中文亂碼的解決方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!