fileReference.save() 上未处理的 IO 错误

发布于 2024-10-20 03:58:54 字数 289 浏览 3 评论 0原文

我正在使用文件引用对象从我的 Flex 应用程序导出 Excel 文件。我正在使用 Flash Player 10 中的 fileReference.save()。如果我尝试保存的文件已打开,则会收到错误消息。即使我放置了一个 try catch 块,这个错误也没有得到处理。我尝试使用 IOErrorEvent.IO_ERROR 添加监听器。错误仍然发生。这是我收到的错误消息 - “Error #2044: Unhandled IOErrorEvent:.text=Error #2038: File I/O Error。”

提前致谢。 马诺伊

I am using a filereference Object to export an excel file from my flex application. I am using fileReference.save() from Flash player 10. I am getting an error if the file i am trying to save is already open. This error is not getting handled even if i put a try catch block. I have tried adding a listener with IOErrorEvent.IO_ERROR. Still the error is happening. This is the Error message i am getting - "Error #2044: Unhandled IOErrorEvent:. text=Error #2038: File I/O Error."

Thanks in advance.
Manoj

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

久光 2024-10-27 03:58:54

这是异步错误,您无法使用 try-catch 块捕获它。为 IOErrorEvent 事件添加事件侦听器。
此外,我们需要一些细节来找出问题的根源。

This is asynchronous error, you can't catch it with try-catch block. Add an event listener for IOErrorEvent event.
Also, we need some details to get the source of the problem.

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