Tagged Questions
0
votes
1answer
23 views
Exception in thread “main” java.lang.OutOfMemoryError: Java heap space with BASE64Decoder
I want to create message signing and verifying software written in java.
thus, I decided to use some code from the Internet.
While codes have no syntax error, it shows java heap space error.
...
4
votes
2answers
70 views
Experimenting with String creation
I found an interesting case while testing with string creation and checking their hashcode.
In first case i created string using copy constructor:
public class Test {
/**
* @param args
...
2
votes
2answers
74 views
Memory management in java when running sql in a loop
I have been facing some trouble with memory management. I have some code here that runs an sql query in a loop, puts the data into Array Lists and then does some computations. I have run many similar ...
3
votes
0answers
61 views
Application memory issue with mac
I face a problem with java application I built in javaFx. It consumes only 2-3% of cpu usage and around 50 to 80 MB of memory in windows. But in mac same application initially starts with 50 mb of ...
0
votes
1answer
30 views
When do methods like JNI GetDoubleArrayElements set isCopy to true or false?
When would the VM pin vs copy the arrays involved here?
If you want to minimize memory usage can you force a pin vs a copy?
0
votes
3answers
34 views
memory allocation for hash map
I've hashMap with "Document" as keys and "DocumentSections" as values.Map <Document, DocumentSection> . Document has lots of other member variables (primitive and non primitive).Document has ...
2
votes
2answers
52 views
Does Java's new keyword necessarily denote heap allocation?
I'm trying to write something fast, and that constantly allocates and deallocates memory, making where this memory is allocated important in terms of performance.
Does allocating objects always ...
0
votes
1answer
35 views
Resizing JFrame add a lot of memory
I was creating a simple JFrame window and check the windows task manager for memory usage and when I tried to resize the JFrame using the mouse pointer not the maximum button it add a lot of memory ...
0
votes
2answers
24 views
avoid loading large number of objects in heap for route calculation in map
I've given java program which calculates turn by turn navigation data(route direction). The code starts by loading map information(lat-longs,paths etc) from flat files(generated from database) which ...
1
vote
0answers
34 views
Android Java memory usage with AdMob
I am experience som major memory issues with my projekt. If you could throw some advice for me that would be really helpfull.. I'll try to explain my whole usage.
In the main activity, the first ...
0
votes
3answers
22 views
Android service stopped, memory same as before
When I stop one service of my application, the memory usage is the same as when the service runs. If I don't start this service it doesn't get increased.
Why Android doesn't release the memory of the ...
-3
votes
0answers
25 views
JVM not release the RAM memory [closed]
I need help with the next situation. I have settings in my JVM with the following parameters:
-XX:+CMSIncrementalMode -XX:+UseCompressedOops -XX:+UseConcMarkSweepGC -XX:MaxPermSize=512m ...
3
votes
2answers
96 views
Take screensot and save android
I'm a very new android developer with a basic understanding of java. I've undertaken a large project and I've hit a problem I can seem to fix.
Basically my problem has three different parts: ...
1
vote
0answers
37 views
Java service memory usage varying
I created a service which reads every 10 seconds(Thread.sleep) new messages from an online text file(chat). When I look in the settings the memory usage starts at 4.0MB which is ok, but every minute ...
0
votes
0answers
37 views
Can I write Java code (client) that invoke low-level API in Jikes rvm?
I am new to Jikes rvm.
Is is possiable for us to write Java code that invokes Jikes rvm API such as the APIs from package "magic"? Can I use these APIs to do low level stuff, like access memory ...
0
votes
0answers
45 views
memory leak on start and stop of an application
I am facing the issue of memory leak on start stop of an application. I referred many other threads and finally used jHat to find the reason for memory leak. Most of the memory leaks were due to the ...
-1
votes
1answer
34 views
Export a large number of data and memory overflow
I import more than one hundred data use eclipse in the computer and no problem. But when I deploy on application server it will out of memory, and I copy the local tomcat.
what is this problem?
The ...
0
votes
1answer
65 views
Java/Android : Phonegap Contacts API memory leaks, GC_FOR_ALLOC and GC_CONCURRENT
I'm using phonegap for a project, and at one point I need to get the entire addressBook of the user. It works great on iOS, but on android, sometimes it takes 2 seconds, sometimes up to 20 seconds.
...
0
votes
0answers
31 views
Jboss, Redeploying the application makes it running slower
I am using jboss-5.1.0.GA for deploying my web application.
I am copying the App.war into the server/default/deploy location.
After deploying the application first time, and when I start, it is ...
1
vote
2answers
54 views
what are the preferred ways to persist data in server in runtime
I have a web application which has the UI having its requests handles by Struts Action class.
Lets say that the UI sends data for 30 variables at a single request. The action class process the ...
1
vote
1answer
26 views
SetbackgroundResource from xml crashes VM, Out of memory. How can i optimise this?
I am currently making a small application in Android.
My wish is to have two ImageViews that change their animation when i click different buttons on the screen.
First a sample xml: (the drawables ...
-7
votes
0answers
55 views
Java applcation hangs [closed]
I run a java application and find out that after some time the application hangs. I later made some research and found out it was a CPU related issue. i.e the JVM process not allocated any CPU time ...
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
1answer
72 views
Memory vs Performance, which would be best?
I need to take an image, scale it, mask it, add a background in case some of it is transparent and then add an overlay image. To do this I've written the following:
Canvas canvas = new Canvas();
...
4
votes
1answer
79 views
How to obtain Java “object” address in Java Native Interface
Is it possible to get the address of a Java object in a JNI method? Or by any other method.
If it is not possible to get real address of an object, then is there a way to determine the memory layout ...
-1
votes
0answers
35 views
JVM memory not released in an Applet [closed]
I have a problem with my Applet and its memory management. In fact, I realized that my JFrame objects are never released, even when I invoke their dispose() method. I use frames as a complex dialog ...
0
votes
2answers
63 views
Large static map in program memory Java
I am translating 16-bit codes from a legacy device into strings as defined by a table. There are over 2,000 codes, and the codes are not consecutive.
They are currently defined in a HashMap like ...
1
vote
2answers
98 views
Force to clear memory
I am running into some memory issues with my project, so I decided to stress test some portions to see some performance measurements. I am using Google's ConcurrentLinkedHashMap library as an LRU ...
3
votes
1answer
39 views
Why does empty project have large memory allocation?
I created an empty project in android. Then I ran it with an emulator that has hardware acceleration.
50% is already allocated. and of those the smallest free chunk of memory is a measly 174 KB.
...
-3
votes
0answers
35 views
Save a section of the screen to memory [closed]
I am working on an android app and am trying to make it save a section of the screen to device memory. I'm looking for a way to, in code, define the section of the screen and then capture that part of ...
2
votes
2answers
36 views
Java Android Bitmap references
I am creating this Android project with Java. However, I am wondering a bit how far the references with some Bitmap methods will go.
I have an originally Bitmap just like:
Bitmap originalBitmap = ...
0
votes
1answer
46 views
How to choose -Xms / -Xmx values correctly? [closed]
Are there any recommendations on how to choose initial / max heap size for a Java application? Why not to set both to available maximum at once?
0
votes
1answer
30 views
changing Vmargs in eclipse
I have a rediculous problem in eclipse memory allocation.
I have acode , when I run it without changing the Vmargs it starts from 250mg and ends in 904mg,without any error and when I change the Vmargs ...
1
vote
1answer
52 views
Java Applet does not start properly when Max Heap Size is set
I have been struggling with developing an applet recently. I have been trying to launch it with JNLP and the "deployJava.js" script. The issue is that this is a memory intensive applet I am developing ...
2
votes
3answers
50 views
Howto get memory usage of a started process
I try to get the memory usage of a process started via Java.
Can someone give me a hint how to do it for the example Notepad.exe?
// Memoryusage of the Java programm
Runtime ...
1
vote
1answer
85 views
RabbitMQ Memory Usage grows too high
I am experiencing a problem with rabbitmq 2.8.5. There are 3 queues that messages are published to and they are consumed relatively quickly by the consumers. So the queues aren't big at all.
There ...
1
vote
2answers
56 views
Max Memory only 880 MB in Java Program
I'm trying to create a HashMap for a dataset that has 4400 records and 27000 features. I have increased the max limit to 4G in the .ini file of eclipse. But, when I print the maxMemory in the java ...
-3
votes
0answers
26 views
com/ibm/jsse2/tc what is this object? [closed]
Is it normal to notice this object repeating over and over within a heap?. 2 weeks past when the heap was taken and I notice this object repeating over and over taking up 133mb of memory making me ...
2
votes
0answers
49 views
Need to get info about objects in Permgen
I want to get info about what contents are getting placed into permgen.
Using "jmap -permstat PID;", i am able to get list of classes, classloaders and no. of bytes occupied but what i really want to ...
6
votes
3answers
173 views
String Creation and char array Memory Allocation
I have read a lot of conflicting articles regarding memory allocation when String is created.
Some articles say that new operator creates a String in heap and String literal is created in String Pool ...
0
votes
1answer
42 views
java heap size grows by portions up to some limit
I am writing a simple server application in Java, and I'm making some benchmarks using Apache benchmark now.
Right after the start the resident memory used by server is about 40M. I make the series ...
1
vote
5answers
215 views
Java - Where should I initialise variables for memory efficiency?
Is it okay for memory to initialise a variable inside a method that will be called rather frequently?
Basically, is this example method:
int amount;
private boolean method() {
amount = ...
14
votes
2answers
194 views
Why does max number of threads decrease when I increase max heap size?
This test shows the max number of threads that can be created in Java
System.out.println("Max memory " + Runtime.getRuntime().maxMemory() / 1024 / 1024 + "M");
for (int i = 0;; i++) {
...
2
votes
1answer
21 views
Issue with FloatBuffer corrupting
I am writing a 3D renderer/engine based on the DooM map layout and porting it to Android. My original algorithm was very slow and I improved it using the method ID did for their iPhone port. This is ...
0
votes
3answers
111 views
How to read a big binary file in Java
I want to read a binary file in Java, which contains m datasets. I know that each dataset consists of 3 elements: a long number, a double number and a long number in that sequence. The datasets are ...
3
votes
3answers
192 views
Out of memory error: Java heap size when memory is available
I'm running java with java -Xmx240g mypackage.myClass
OS is Ubuntu 12.10.
top says MiB Mem 245743 total, and shows that java process has virt 254g since the very beginning, and res is steadily ...
5
votes
1answer
75 views
Memory size of a Java 32-bit system int[] array
In Java, memory used for occupying the int[] array of size n equals to (4 + n) * 4 bytes.
Practically can be proven by the code below:
public class test {
public static void main(String[] args) ...
3
votes
1answer
36 views
How to identify Tenured Space
I want to build a MemoryWarningSystem as described in many articles:
e.g. as in http://www.javaspecialists.eu/archive/Issue092.html.
Therefore, I want to identify the tenured space like this:
...
3
votes
2answers
77 views
Do I need to manually dispose of a java tree structure when it is no longer needed?
I construct lots of object trees in my applications, where each node is your typical tree node (reference to parent and a list of references to children). These trees are temporary, meaning that I ...
1
vote
2answers
61 views
Reading / writing lots of int[] (BitSet) data into file(s) repeatedly can be done fast in Java?
My main program looks as below (pseudo code):
public void main(String[] args) {
// produce lots of int[] data which is stored inside a list of hashmaps
List<HashMap<Integer, ...



