I am working on a small task where I am required to store around 1 billion integers in an Array. However, I am running into a heap space problem. Could you please help me with this?
Machine Details : Core 2 Duo Processor with 4 GB RAM. I have even tried -Xmx 3072m . Is there any work around for this? The same thing works in C++ , so there should definitely be a way to store this many numbers in memory.
Below is the code and the exception I am getting :
public class test {
private static int C[] = new int[10000*10000];
public static void main(String[] args) {
System.out.println(java.lang.Runtime.getRuntime().maxMemory());
}
}
Exception : Exception in thread "main" java.lang.OutOfMemoryError: Java heap space at test.(test.java:3)

java -mxright? – Miserable Variable Feb 2 at 21:03ints you need about 4GB of heap space. That is not always available... – thkala Feb 2 at 21:04