我可以获得我的程序剩余多少内存?

时间:2011-06-24 16:58:01

标签: java android memory

我的程序有许多需要大量内存的工作,当我需要停止它时我无法确切知道,但是如果内存很少,我可以强制它停止使用资源。那么我可以得到我的程序可以使用多少剩余(字节)内存吗?

P / s:没有办法释放进程内存。他们需要尽可能多的内存,这就是它的工作方式(而且,收藏者没有垃圾,因为旧的仍需要)。

4 个答案:

答案 0 :(得分:9)

尝试类似:

Debug.MemoryInfo memoryInfo = new Debug.MemoryInfo();
Debug.getMemoryInfo(memoryInfo);

String memMessage = String.format("Memory: Pss=%.2f MB,
    Private=%.2f MB, Shared=%.2f MB",
    memoryInfo.getTotalPss() / 1000,
    memoryInfo.getTotalPrivateDirty() / 1000,
    memoryInfo.getTotalSharedDirty() / 1000);

您可以在此博客上阅读更多内容:http://huenlil.pixnet.net/blog/post/26872625

答案 1 :(得分:1)

http://www.javaspecialists.eu/archive/Issue029.html http://www.exampledepot.com/egs/java.lang/GetHeapSize.html

答案 2 :(得分:1)

public static long getCurrentFreeMemoryBytes() {
     long heapSize =  Runtime.getRuntime().totalMemory();
     long heapRemaining = Runtime.getRuntime().freeMemory();   
     long nativeUsage  =  Debug.getNativeHeapAllocatedSize();

     return Runtime.getRuntime().maxMemory() - (heapSize - heapRemaining) - nativeUsage;    
}

虽然并不完美,但它应该在大多数情况下完成。

答案 3 :(得分:0)

查看Android为内存跟踪here提供的工具。