如何打开和写弯曲的Web应用程序指定的文件?(How to open and Write speci

2019-10-17 07:20发布

在Web应用程序。 我要创建在用户的桌面文件有一些名字,我想写进它是如何做到这一点? 是否有可能使用文件参考?

Filereference.save()方法我试过,但它打开对话框中保存,但我想文件中指定的路径将被保存,而无需打开对话框。

Answer 1:

从基于浏览器的Flash应用程序; 你无法将文件保存到Flex中的用户机,而无需用户输入。 FileREference.save()是正确的做法,但你发现它打开了用户输入的对话框。

根据你需要存储哪些信息; 本地共享对象可能工作。 Adobe已经在使用共享对象的一些好的文档:

  • https://learn.adobe.com/wiki/display/Flex/Shared+Objects
  • http://livedocs.adobe.com/flex/3/html/help.html?content=lsos_5.html
  • http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/SharedObject.html
  • http://livedocs.adobe.com/flex/3/html/help.html?content=lsos_2.html


文章来源: How to open and Write specified file in flex web app?