JohnDoe4136
JohnDoe4136

Reputation: 539

FileIOException in Blackberry

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?

Upvotes: 2

Views: 2537

Answers (1)

Eric Giguere
Eric Giguere

Reputation: 3505

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.

Upvotes: 3

Related Questions