如何使用flex3创建数据并将数据写入文件?

发布于 2024-08-24 23:46:09 字数 96 浏览 6 评论 0原文

我想创建一个文件并在第一次运行我的应用程序时将一些数据(用户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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

2024-08-31 23:46:09

这取决于您正在处理纯 Flex 还是 AIR 项目。

  • 如果您正在制作 AIR 应用程序,则可以使用 File 类(更多信息可参见 此处此处);
  • 如果没有,您将必须使用服务器端脚本(PHP、ColdFusion、Java EE...)来完成这项工作,例如使用 HTTPService 对象调用它。

It depends if you're working on a pure-Flex or an AIR project.

  • If you are making an AIR application, you can access local files using the File class (more informations can be found here and here) ;
  • If not, you'll have to use a server-side script (PHP, ColdFusion, Java EE...) to do the job, calling it using a HTTPService object for instance.
水水月牙 2024-08-31 23:46:09

如果您不关心文件的位置并且文件的最大内容小于 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文