- A new error I never seen before in Android. Is there any Solution?
- 02-07 10:49:45.558: E/dalvikvm-gc(7184): Could not create 2617344-byte ashmem mark stack: Too many open files
- InputStream is = null;
- try {
- is = new FileInputStream(myFile);
- // read stuff from is
- } finally {
- if (is != null) {
- try {
- is.close();
- } catch (IOException e) {
- Log.w(LOG_TAG, "Exception raised when closing file", e);
- }
- }
- }