2
ヒープサイズの制限のため、私のMidletは異なるヒープサイズに対して異なる方法で動作する必要があります。たとえば、多かれ少なかれビットマップフォントを読み込む必要があります。j2meで電話で最大ヒープサイズを取得する方法は?
ヒープサイズの制限のため、私のMidletは異なるヒープサイズに対して異なる方法で動作する必要があります。たとえば、多かれ少なかれビットマップフォントを読み込む必要があります。j2meで電話で最大ヒープサイズを取得する方法は?
// Get current size of heap in bytes
long heapSize = Runtime.getRuntime().totalMemory();
// Get maximum size of heap in bytes. The heap cannot grow beyond this size.
// Any attempt will result in an OutOfMemoryException.
long heapMaxSize = Runtime.getRuntime().maxMemory();
// Get amount of free memory within the heap in bytes. This size will increase
// after garbage collection and decrease as new objects are created.
long heapFreeSize = Runtime.getRuntime().freeMemory();
maxMemory方法は、とにかく有効な回答をCLDC 1.1に欠けますがされて参照してください。 – Trax