answersLogoWhite

0

To give java more memory there are a series of steps to follow. To start, go to the computer's control panel, select programs, then go to java settings. This should initiate the Java control panel to pop up. Click on the Java tab followed by the view button. Click on the "runtime parameters" and input the specifics desired. Once finished hit okay then apply and it should increase the memory on your Java.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

What is an object in Java?

object is an instance of a class. it's used to allocate memory dynamically at run time to access class members.


How you allocate the memory in java?

In Java we need not allocate memory manually. The JVM would take care of allocating as much memory that your objects would require automatically.


What is heap -short?

The microprocessor architecture divides the memory into distinct areas. Heap is one of them. This is where you can statically/dynamically allocate memory.


What is the process of allocation of memory for an integer type variable?

To dynamically allocate memory, use the following function (stdlib.h I believe): int *variable1 = malloc(sizeof(int));


How can you allocate memory dynamically in c?

char* new_string; // could be any type new_string = (char*) malloc (5120); // allocate memory - typecast is necessary if (new_string == NULL) ... memory exception ... ... use the data ... free (new_string); // release memory when done


How do you make your fps better on minecraft?

install optifine and play around with the settings. you can also allocate more memory to java. and you can turn the sound off. and you can update your java


How can you solve the javanetsocketexception on Minecraft?

allocate more memory to run minecraft. Use a 64-bit java for optimum peformance


What is the difference between segmentation and compaction?

Segmentation involves dividing memory into variable-sized partitions to allocate memory dynamically, while compaction rearranges memory to reduce fragmentation by moving allocated memory blocks closer together. Segmentation deals with memory allocation, while compaction improves memory utilization.


What is a heap in Java and how does it function within the Java programming language?

In Java, a heap is a data structure used to store and manage objects dynamically allocated during program execution. It is a region of memory where objects are stored and accessed by the Java Virtual Machine (JVM). The heap is responsible for memory allocation and deallocation, allowing objects to be created and destroyed as needed. This helps manage memory efficiently and ensures that the program runs smoothly without running out of memory.


How do you write a C plus plus statement to allocate memory cells dynamically and store the memory address in a pointer to an integer named gred?

int * gred ; gred = new int [100] ; // this example snippet creates 100 ints


How is java reliable?

Java is robust because it is highly supported language, meaning that unlike C you cannot crash your computer with a bad program. Also, another factor in its robustness is its portability across many Operating systems, with is supported by the Java Virtual Machine.


Which data type assigns values automatically?

None of the data types available in C assigns valur to the variable. Initially all the variables have a garbage value. But when we use calloc() to allocate memory dynamically only then it assigns NULL to the memory block assigned.