如果最终用户授权,Flex swf 写入本地文件
是否可以从 Flex swf 写入本地文件“example.txt”? FileStream 类在 Adobe AIR 中可用,不在 Flex 中。我想从 swf 写入,而不是 AIR 应用程序。
我正在开发一个信息亭类型的应用程序,它必须将用户交互数据记录到计算机上的文本文件中。
有执行此操作的代码示例吗?
Is it possible to write to a local file 'example.txt' from a Flex swf? FileStream class is available in Adobe AIR, not in Flex. I want to write to from a swf,not AIR application.
I am developing a kiosk type application which has to log user interaction data to a text file on the machine.
Is there a code example for doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 FileReference< /a> 在用户确认的情况下保存文件。您还可以使用 FileReference 加载用户指定的文件。或者,您可以使用 SharedObject 来保存信息,而无需对话框。
You can use FileReference to save a file with user confirmation. You can also use FileReference to load a file specified by the user. Or, you can use a SharedObject to save information without a dialog.