I'm developing a program that would require huge amount of memory, and I want to catch when out-of-memory exception happens. I had heard this is not possible to do, but curious if there is any development on this end.
|
|
It's not an exception; it's an error: java.lang.OutOfMemoryError You can catch it as it descends from Throwable:
However, unless you're doing some rather specific stuff (allocating tons of things within a specific code section, for example) you likely won't be able to catch it as you won't know where it's going to be thrown from. |
||||||
|
|
|
It's possible:
|
||||
|
|
|
You can catch and attempt to recover from OutOfMemoryError (OOM) exceptions, but it is probably a bad idea ... especially if your aim is for the application to "keep going". There are a number of reasons for this:
So my advice is NOT attempt to keep going from an OOM ... unless you know why it happened and know that your recovery will release enough memory to continue. |
||
|
|
|
|
It is possible, but if you run out of heap its not very useful. If there are resources which can be freed you better off using SoftReference or WeakReference to such resources and their clean-up will be automatic. I have found it useful if you run out of direct memory before this doesn't trigger a GC automatically for some reason. So I have had cause to force a gc if I fail to allocate a direct buffer. |
||
|
|
|
|
Sure, catching OutOfMemoryError is allowed. Make sure you have a plan for what to do when it happens. You will need to free up some memory (by dropping references to objects) before allocating any more objects, or you will just run out of memory again. Sometimes the mere act of unwinding the stack a few frames will do that for you, some times you need to do something more explicit. |
||
|
|
|
|
It is possible to catch Any exception. Just write
Ideally you are not supposed to catch |
||
|
|
|
|
As a digression - why does your application run out of memory? Why not post a follow up question asking how to restructure the application to use less memory? |
||
|
|
