开发者

Problem uploading Excel-document. What's wrong?

开发者 https://www.devze.com 2023-02-23 13:41 出处:网络
For some reason, not all of Excel-documents can be upload from my computer. In half the cases get the error \".. no!! error:\" from a block of try-catch .. What is wrong?

For some reason, not all of Excel-documents can be upload from my computer. In half the cases get the error ".. no!! error:" from a block of try-catch .. What is wrong?

        private function importXLS(e:MouseEvent):void {
            fr = new FileReference();
            var fileFilter:FileFilter = new FileFilter("Excel (.xls)", "*.xls");
            fr.addEventListener(Event.SELECT,selectXLS);
            fr.browse([fileFilter]);
            statusLabel.text = "selecting...";
        }

        private function selectXLS(e:Event):void {
            fr = FileReference(e.target);
            fr.addEventListener(Event.COMPLETE, fileI开发者_如何学运维n);
            fr.load();
            statusLabel.text = "loading...";
        }

        private function fileIn(e:Event):void {
            ba = new ByteArray();
            ba = fr.data;

            xls = new ExcelFile();

            var flag:Boolean = false;
            try{
                xls.loadFromByteArray(ba);
                flag = true;
            }catch(error:Error){
                Alert.show("no!! error: " + error.getStackTrace());
            }
            if (flag == true) {
                statusLabel.text = "XlS loaded.";
            } else {
                statusLabel.text = "XlS didn't load.";
            }

        }


You are reading the entire file into memory. If a user tries to upload too big a file, their browser will crash. Is there a reason you doing this? Are you using the bytes in the client or just passing them to the server. If you are passing them to the server, you want to just not use the fr.load method that you call in selectXLS(). Instead use fr.upload and avoid your whole problem.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号