记录到 Flex 中的本地文件
我的应用程序前端是用 Flex 3 开发的。 对于日志记录,我们有时使用跟踪和记录器,但我们没有特定的方法将日志存储在用户计算机的本地文件中。
事实上,我从 Adobe livedocs 中了解到,flashplayer 会自行管理 flashlog.txt 文件中的所有日志。
还有其他方法可以维护日志副本吗?每次执行“注销”时,flashlog.txt 都会被清除。
I have my application frontend developed in Flex 3.
For logging, we are using traces and Logger at times yet we dont have a specific way to store logs in a local file of User's machine.
In fact, what I learned from Adobe livedocs is that flashplayer manages itself all logs in flashlog.txt file.
Is there any other way I can maintain a copy of logs? flashlog.txt gets cleared everytime we perform "Logout".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有提到您的应用程序是桌面应用程序还是基于浏览器的应用程序。
对于桌面应用程序,您可以编写一个新类;
对于基于浏览器的应用程序,您可以继续写入内存中的字符串或本地共享对象。使用共享的本地对象,不断附加到日志,然后通过网络调用进行整理。
You have not mentioned whether your application is a desktop application, or a browser based.
In case of a desktop application you can write a new class,
In case of a browser based application, you can keep writing either to an in-memory string, or to a local shared object. Using a shared local object, keep appending to logs, and then collate via a web call.