I am having a fileIOException: File system out of resources when i tried to read some files on my blackberry torch. What can I do to prevent this from happening?
相关问题
- how to call a C++ dll from C# windows application
- Catch the same exception twice
- Create CFrameWnd gives first-chance exceptions--wh
- Creating exception classes for lot different error
- Can not cast IMAPInputStream to Multipart
相关文章
- JUnit continue to assert things after expected exc
- How to handle translation of exception message?
- correct way to store an exception in a variable
- UnhandledException Event doesn't work?
- Any way in Visual Studio to not break on throwing
- C++ (Standard) Exceptions and Unicode
- What's the significance of -532459699?
- What specifically causes EPrivilege to be raised?
You probably have too many files open simultaneously, or you haven't properly closed previous file connections. There is a global limit on the number of open file connections on the BlackBerry, something like 16 open at any time. You should close connections as soon as you don't need them.