When will the 64-bit version of JDIC be available?

My Java program needs a lot of memory to run, the 32-bit version of Java max is 1.5 GB, my system has 4 GB of RAM, so I decided to run it under the 64-bit version of Java, but the JDIC will not work, which affects my program, so I wonder if anyone knows when 64-bit JDIC will be available?

+1
source share
2 answers

Assuming you are using a 64-bit OS and a 64-bit JVM, you can try the latest version of Java 6u13, as I believe that the client-side support for 64-bit applications has been improved.

Note. I would not suggest using more than 1/2/2/3 of your memory for the Java heap. You may also need more main memory to see a real improvement in the amount of memory that you can actually use. (Since you need to leave memory for the OS, other programs, and your own native memory / Java libraries, etc.)

+1
source

I used only Desktop (org.jdesktop.jdic.desktop.Desktop) from JDIC, ​​and now I can use java.awt.Desktop from Java 6. There are a few differences, but in fact they both have the same functionality.

0
source

Source: https://habr.com/ru/post/1306883/


All Articles