如何使用flex3创建数据并将数据写入文件?
我想创建一个文件并在第一次运行我的应用程序时将一些数据(用户ID)写入该文件,在第二次运行期间基于文件数据进行所有操作(将进入下一个状态),这可能吗?如何创建数据并将其写入文件?
I want to create a file and write some data (userid) into the file at first run of my application, during the second run all the operation (will go to the next state) based on the file data, is it possible? How to create and write data into file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这取决于您正在处理纯 Flex 还是 AIR 项目。
HTTPService
对象调用它。It depends if you're working on a pure-Flex or an AIR project.
HTTPService
object for instance.如果您不关心文件的位置并且文件的最大内容小于 100 KB,那么您可以使用 flash 中的共享对象。
If you are not concerned about file's location and max content of file is less than 100 KB then you may make use of Shared Objects in flash.