How to detect mobile heap memory at runtime using j2me?

I am developing a j2me application. In this application, I need to define the heap mobile memory at runtime. Is it possible?

+3
source share
1 answer
 Runtime.getRuntime().totalMemory();
+3
source

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


All Articles