Runtime.getRuntime().exec 라는 메서드를 쓰면
안드로이드에서 adb shell 명령어를 사용할수 있다는건 찾아냈습니다
제가 /sys/class/thermal/thermal_zone0 에서 cat temp 를 사용하여
cpu 의 온도를 얻어내고자 하는데
Process cpuTemp = Runtime.getRuntime().exec(" cd /sys/class/thermal/thermal_zone0 cat temp ");
로 사용하면 될까요 ?
찾아봐도 사용법들이 너무 제각각이라 감이 안옵니다..ㅠ