The Java class type thrown when the Java Virtual Machine cannot allocate an object because it is out of memory, and no more memory could be made available by the garbage collector.

learn more… | top users | synonyms (1)

0
votes
1answer
13 views

Out of memory error while decoding base64 to byte array?

I've an android application which is loading images from server. Server sends images in base64 format in a XML. When I am decoding this base64 into byte array I am getting out of memory error. This is ...
0
votes
0answers
4 views

Streaming XML from rest service using XMLStreamWriter gives heap space

I am building up a large XML based on a query and to avoid memory problems, I would like to stream this back to the client. An abbreviated example: public Response getData() { ...
0
votes
0answers
8 views

Strange tomcat behaviour causing outofmemory error

I have this peculiar situation. I have tomcat unzipped to a certain folder. When i start 'catalina.bat' from command line, everything is fine. But i actually want to start tomcat from within my ...
0
votes
3answers
63 views

There's any way to run two JVM in the same server?

I'm having some issues with the JVM; I have a Web page and an application with no GUI(UDP server), and both uses the same database, the application(UDP server) it's working ok but if the web ...
0
votes
0answers
10 views

Memcached - SERVER_ERROR out of memory storing object

i'm getting the error in Memcached every now and then. SERVER_ERROR out of memory storing object i still have plenty of memory available on my system (5GB). My Monitoring Plugin (Nagios) tells me ...
0
votes
2answers
40 views

Android Bitmap OutOfMemoryError [duplicate]

I'm having an OutOfMemoryError in my VSD220 (It's a 22" Android based All in one) for (ImageView img : listImages) { System.gc(); Bitmap myBitmap = ...
0
votes
2answers
18 views

File browser out of memory

I am trying to load the thumbnails for videos in a file browser but its causing me to run out of memory. public class Filea { private Bitmap VideoIcon; public Bitmap getVideoIcon() { return ...
0
votes
3answers
32 views

Avoid OutOfMemory when creating an image

I want to create a BufferedImage in a Java-Application. The users are allowed to change the dimensions of the image and I would like to allow images "as big as possible". How can I check, whether ...
0
votes
3answers
35 views

outofmemoryerror while making bitmap

I am making the camer application which can composite the camera preview and png. I would like to save the images in onPictureTaken callback my source is below public void onPictureTaken(byte[] ...
1
vote
1answer
16 views

SBT runs out of memory

I am using SBT 0.12.3 to test some code and often I get this error message while testing interactively with the ~test command. 8. Waiting for source changes... (press enter to interrupt) [info] ...
0
votes
2answers
40 views

Out of memory error android

I am developing an android game application where i have about 15 screens.When i continuously play, i get an out of memory error problem randomly, sometimes in the 15th screen, and sometimes in the ...
0
votes
0answers
11 views

Eclipse memory use is unbounded when rendering Android views

I'm building an Android app and I need to preview the layout visual designs. Some of these include custom views. The extent of the customization is limited to overriding onMeasure(...) in some cases ...
0
votes
0answers
35 views

Android - SQLiteException: unknown error (code 0): Native could not create new byte[]

I'm getting this error when trying to query up to 30 objects, each object has field byte[] which weights 100x100 ARGB_8888 bitmap data ~ 39kb I'm using OrmLite 4.45 version. Device - Samsung GT ...
1
vote
5answers
49 views

java.lang.OutOfMemoryError: Java heap space when stitching 13k .png images together

I have 13255 images, each 240 x 240 pixels wide, the biggest 15,412 bytes in size and the smallest 839 bytes. I am trying to loop through the folder adding each of them to a File[]. Once I have an ...
6
votes
6answers
99 views

How to overcome OutOfMemoryError when VM is full in android application?

Check this MOCKUP of my application : PROBLEM : If I click on SECOND PAGE button from FIRST PAGE, it open new intent of SECOND PAGE Then I click on THIRD PAGE button from SECOND PAGE, then it ...
0
votes
1answer
40 views

Android devices, heap size

Currently my application works with android 2.1+ devices. This app processes bitmaps. Sometimes I get OutOfMemory (eg. HTC G1 [16mb heap]). I would like to specify this app for devices with min. 48mb ...
0
votes
1answer
62 views

Out Of Memory Exception when caching bitmaps

I am designing an application where i want to store 12 bitmaps in memory for quick access. I am retrieving these images from the disk cache or downloading them if they are not present. The issue that ...
0
votes
0answers
40 views

Tomcat permGen space out of memory exception. Tomcat hangs and stops responding

I am using Spring, Struts, and Tomcat 7. After every few days I wake up to find out that the server has chocked Recently I checked all Hibernate sessions and made sure they are closed To keep the ...
0
votes
1answer
22 views

SLURM - OutOfMemoryError: GC overhead limit exceeded

I have submitted a sbatch job to SLURM. #!/bin/bash #SBATCH --job-name=freset_weighting #SBATCH --output=freset.out #SBATCH --error=freset.err #SBATCH --time=120:00:00 #SBATCH --mem=32769 #SBATCH ...
0
votes
3answers
60 views

Reading bytes from large files in Java cause Java heap space error

Awhile ago I was seeking help on the code below and finally started working on it again. Basically, I've narrowed my error down to the size of the file causing this error: Exception in thread "main" ...
0
votes
1answer
41 views

Overcome out of memory Error when loading images into textview

Sorry if this sound newb but.. =[ Im working with an application which need to load a large amount of images onto a textview, i didnt use webview becuz sometimes it doesnt lead to mobile view so i ...
0
votes
0answers
17 views

Dataset.read throws heap error in mahout

This is my java code. InputStream inputStream = new FileInputStream(new File( "/home/689693/Desktop/sunitha/customer360/churn/test/test.csv")); DataInput dataInput = new ...
0
votes
0answers
13 views

Get Image size(int bytes) before decoding android

I've an image (3648x2736) around 4.19 MB(size in disk) and I wanted to load it in my application but it crashed as it should because of not enough memory. So to avoid these kind of crashes I put a ...
2
votes
6answers
266 views

Scaling and loading bitmap causes OOM (OutOfMemoryError) (Android)

I have now tried a thousand times to solve this on my own without any success whatsoever. I've logged and debugged the application and from the information that I've gathered there is this one large ...
2
votes
2answers
68 views

Android app crash puzzle

I've created an Android app that works perfectly on my device. I have sent over the APK to someone, and it worked on his device also. At one point, he wanted to modify something in the app. So I sent ...
0
votes
1answer
10 views

How to solve out of memory error?

I am doing my project in OCR.For this i am using image size of 64x64 because when i tried 32x32 etc some pixels is lost.I have tried features such as zonal density, Zernike's moments,Projection ...
0
votes
1answer
59 views

FragmentStatePagerAdapter OutOfMemoryError

I'm running into OutOfMemoryErrors in an app that I'm working on and I'm having difficulty figuring out how to fix it and what exactly the issue is. I'm using the FragmentStatePagerAdapter, since that ...
1
vote
3answers
43 views

Java Web App: High Heap Usage and Blocked Threads - at the same time

I have a Java/Java EE Web Application. Often when I see that the application stops responding because of high heap usage (or out of memory scenario), I also see that threads are blocked (via a thread ...
0
votes
0answers
9 views

Android OutOfMemoryError in LinearLayout

![enter image description here][1]I am implementing a customized list by using linearlayout .Inside side this linear layout i am inflating views like view=new View(this); ...
0
votes
1answer
41 views

How do i fix: OutOfMemoryError with External Sorting

This program basically reads a huge amount of data from a binary file named data.bin where each item in the file is 1024 bytes long. the first 24 bytes of each item is the key and the remaining 1000 ...
0
votes
3answers
66 views

Load many large bitmap images as thumbnails - Android

I'm working on a media player app and wish to load album art images to display in a ListView. Right now it works fine with the images I'm auto-downloading from last.fm which are under 500x500 png's. ...
0
votes
1answer
37 views

Android adding image to app, makes it slow

I have a ImageButton, when I click it it gives me an AlertDialog to add an image to my Imagebutton. When I add an image, the app becomes very slow and laggy. If I want to reselect an image then the ...
2
votes
3answers
82 views

How do I solve OutOfMemoryError: Java heap space

I am getting following error on the commented line: "OutOfMemoryError: Java heap space" The data.bin file is huge so this error is expected. My question is how exactly do I get around this error? ...
0
votes
0answers
23 views

ActiveXObject runs out of memory when trying to save a large PowerPoint file as HTML

Below is the client script code: <html> <body> <script> filePath = "C:\\tmp\\"; fileBasename = "largeFile_7MB"; pptFileName = filePath + fileBasename + '.pptx'; htmlFileName = ...
1
vote
2answers
23 views

How to use MAT?

I'm running out of memory on an android emulator. I attempt to find the source of the problem. Here's my heap data. What's concerning if i'm reading it right is that I have 3.1 MB free but the ...
1
vote
1answer
31 views

Fixing sbt OutOfMemoryError on Travis CI

I have an sbt project that builds fine locally (because I have the SBT_OPTS="-XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled -XX:PermSize=256M -XX:MaxPermSize=512M" in my ~/.sbtconfig) but the ...
1
vote
2answers
82 views

OutOfMemoryError when parsing XML in Clojure with data.zip

I want to use Clojure to extract the titles from a Wiktionary XML dump. I used head -n10000 > out-10000.xml to create smaller versions of the original monster file. Then I trimmed with a text ...
0
votes
0answers
8 views

ReadAllText not Reading all text from a file

I have a program that searches using ReadAllText from a file. The file is only 2.2meg. It reads about 80% and does not give an error. It just does not find my searches in the 20% extra text. What can ...
0
votes
1answer
73 views

how to let dalvik dump whole app heap memory when OOM happens

I am a beginner for Android develop. And currently I am looking for an automatic way to dump memory when out of memory error happens. I read that adding -XX:+HeapDumpOnOutOfMemoryError ...
1
vote
1answer
43 views

Java GC strange behaviour or memory leak?

I am working on a Swing application and recently, I started to see the following problem: I have to display in a separate window a very large job report. I close this window, then I re-open the same ...
1
vote
1answer
78 views

Scala for-loop ranges OutOfMemoryError

Why does for {i <- (1 to 1000000000)} println(i) gives me OutOfMemoryError but (1 to 1000000000) foreach println does not? What if I have to use the for-loop syntax, what should I do?
0
votes
0answers
19 views

Error in vfabric in side STS leads to hang server, throws java.lang.OutOfMemoryError in vFabric

Hii all this is my second question, now I have seen some questions of similar type I followed their instructions did following changes : JAVA_HOME="/usr/java/jdk1.7.0_10/jre" AGENT_PATHS="" ...
0
votes
2answers
48 views

How do you test an “out of memory” exception handler on an Android device?

I've just added an exception handler to handle an OutOfMemoryError when doing some image processing, because there have been a few crash reports of it happening. Can I somehow fill up the memory on ...
1
vote
1answer
102 views

android bitmap out-of-memory error after getting same image twice in a row

I have a program that is supposed to grab an image from a user's gallery and then display the image in a subsequent activity. As part of my testing, I try to do the operation twice in a row: in ...
0
votes
5answers
76 views

OutOfMemoryException caused by large Strings

Im using using following Method to catch Data from a webapi: public static String sendRequest(String requestURL, String data) throws IOException { URL url = new URL(requestURL + "?" + ...
0
votes
0answers
91 views

netty4 client OutOfMemoryError :java heap space

My client code: private static Bootstrap bootstrap = new Bootstrap(); private static NioEventLoopGroup ne = new NioEventLoopGroup(); static { bootstrap.group(ne); ...
0
votes
0answers
23 views

Out of memory error while building xbox application in submission profile in GalaSoft.MvvmLight

I'm trying to QA another devs application and he isn't able to help me work through this. When trying to build the application I get an error and can see the following in the logs on the project: ...
0
votes
3answers
60 views

Out of memory exception not caught

I have option to save Bitmap to sdcard in my app. I am doing saving in AsyncTask method. here is what i do on background public File saveImageToExternalStorage(Bitmap image, String name) { String ...
0
votes
1answer
48 views

Programmatic Image Resizing in Android, Memory Issues

Days, I've spent working on this. Weeks, perhaps. Literally. :( So I've got an image on an SD card that more than likely came out of the built-in camera. I want to take that image and downsample it ...
0
votes
1answer
82 views

Out of memory Error on setImageResource

I'm making a board game, and I'm using a 10x10 GridView for the board. I've made a class ImageAdapter extending BaseAdapter which holds an Integer array of icons (9 patch files), and these are used to ...

1 2 3 4 5 18