Dobře, tohle přesně fungovalo pro mě, pro případ, že by to někdo v budoucnu potřeboval... :)
Obklopte se a pokuste se chytit
try {
Process process = Runtime.getRuntime().exec("top -n 1 -d 1");
BufferedReader in = new BufferedReader(new InputStreamReader(process.getInputStream()));
} catch (InterruptedException e) {
e.printStackTrace();
}
Podívejte se na Log Collector jako příklad. Zde je příslušný soubor.
Klíč je zde:
ArrayList<String> commandLine = new ArrayList<String>();
commandLine.add("logcat");//$NON-NLS-1$
[...]
Process process = Runtime.getRuntime().exec(commandLine);
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(process.getInputStream()));