Flex实现文件下载

来源:互联网 发布:武媚娘传奇知乎 编辑:程序博客网 时间:2024/06/15 01:23

给方法中出去http地址就可以实现下载

public function downLoadFile(fileUrlPath:String):void{    if (fileUrlPath != null && fileUrlPath.length > 0)    {        var req:URLRequest=new URLRequest();        req.url=fileUrlPath;        if (fileUrlPath.indexOf("http") > -1)        {            var file:File=File.applicationStorageDirectory;            file.download(req);        }        else        {            navigateToURL(req, "_blank");        }    }}


0 0
原创粉丝点击