码迷,mamicode.com
首页 > 其他好文 > 详细

系统内存信息获取工具类

时间:2014-06-24 12:31:36      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:style   class   ext   color   get   使用   

/**
 * 得到系统内存信息的工具类
 * @author zwenkai
 */
public class SystemInfoUtils {
    /**
     * 得到运行的进程总个数
     * 
     * @param context
     * @return 运行进程个数
     */
    public static int getRunningProcessCount(Context context) {
	ActivityManager am = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
	return am.getRunningAppProcesses().size();
    }
    /**
     * 得到可用内存数
     * 
     * @param context
     * @return
     */
    public static long getAvailRam(Context context) {
	ActivityManager am = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
	MemoryInfo outInfo = new MemoryInfo();
	am.getMemoryInfo(outInfo);
	return outInfo.availMem;
    }
    /**
     * 得到总内存数
     * 
     * @param context
     * @return
     */
	
    public static long getTotalRam(Context context) {
	try {
	    File file = new File("/proc/meminfo");
	    BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(file)));
	    String line = br.readLine();
	    br.close();
	    StringBuffer sb = new StringBuffer();
	    //MemTotal:         513000 kB
	    for (char c :line.toCharArray()) {
	        if(c > ‘0‘ && c < ‘9‘) {
		    sb.append(c);
		}
	    }
	    return Integer.parseInt(sb.toString())*1024l;
	} catch (IOException e) {
	    e.printStackTrace();
	    return 0;
	}
    }
	
    //4.0之后可以使用
    public long getTotalRam1(Context context) {
	ActivityManager am = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
	MemoryInfo outInfo = new MemoryInfo();
	am.getMemoryInfo(outInfo);
	return outInfo.totalMem;
    }
}

系统内存信息获取工具类,布布扣,bubuko.com

系统内存信息获取工具类

标签:style   class   ext   color   get   使用   

原文地址:http://www.cnblogs.com/loveandroid/p/3805125.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!