本文介绍了使用Flash /柔性下载/保存/写在客户端的硬盘上的文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我不知道我怎么可以下载/保存/写距离我的服务器文件到客户端的计算机使用闪光灯或弯曲。

解决方案

使用的FileReference

<一个href="http://livedocs.adobe.com/flex/3/html/help.html?content=17_Networking_and_communications_7.html" rel="nofollow">http://livedocs.adobe.com/flex/3/html/help.html?content=17_Networking_and_communications_7.html

  VAR要求:的URLRequest =新的URLRequest(INDEX.XML);
VAR fileRef:的FileReference =新的FileReference();
fileRef.download(要求);
 

I wonder how can I download/save/write a file from my server to a client's computer using flash or flex.

解决方案

Use FileReference

http://livedocs.adobe.com/flex/3/html/help.html?content=17_Networking_and_communications_7.html

var request:URLRequest = new URLRequest("index.xml");
var fileRef:FileReference = new FileReference();
fileRef.download(request);

这篇关于使用Flash /柔性下载/保存/写在客户端的硬盘上的文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 09:24