티스토리 뷰
Runtime runtime = Runtime.getRuntime();
try {
Process p = runtime.exec("dumpsys");
//Process p = runtime.exec("dumpsys meminfo");
BufferedReader br = new BufferedReader(new InputStreamReader(p.getInputStream())); String line = null;
while ((line = br.readLine()) != null) { Log.d("test", line);
}
br.close();
} catch (Exception e) {
Log.d("Exception", e.toString());
} |
[출처] http://leejiheg.tistory.com
[원본] http://leejiheg.tistory.com/10
[저작자] 지똥이
'Development' 카테고리의 다른 글
[Android] bitmap 얻기 (0) | 2011.08.26 |
---|---|
[Android] AndroidSystem 날짜 및 시간설정의 자동,수동설정여부 (0) | 2011.08.05 |
[OpenGL] 자주쓰는 함수목록 (0) | 2011.07.26 |
[CSS] !important style우선순위 결정 (2) | 2011.07.01 |
[Android] getIdentifier() 를 이용한 이미지 적용 (0) | 2011.06.07 |
댓글
최근에 올라온 글
글 보관함
- Total
- Today
- Yesterday