fileReference.save() 上未处理的 IO 错误
我正在使用文件引用对象从我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是异步错误,您无法使用
try-catch
块捕获它。为IOErrorEvent
事件添加事件侦听器。此外,我们需要一些细节来找出问题的根源。
This is asynchronous error, you can't catch it with
try-catch
block. Add an event listener forIOErrorEvent
event.Also, we need some details to get the source of the problem.