안드로이드 (18) 썸네일형 리스트형 [Android] 소스에서 Shell Command, Script 실행하는 법 Runtime runtime = Runtime.getRuntime(); try{ Process p = runtime.exec("명령어"); 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("Test",e.toString()); } 쉘스크립트를 실행시켜야 할때, int i; try{ Process ps = Runtime.getRuntime().exec(command); ps.waitFor(); Sy.. ADB Shell Command Reference 안드로이드 폰에서 사용할 수 있는 Shell Command는 /system/bin 디렉토리에서 확인할 수 있습니다. These commands are present in /system/bin am app_process applypatch applypatch_static bluetoothd bmgr bootanimation btld bugreport cat charging_mode check_prereq chmod chown cmp cryptsetup csview dalvikvm date dbus-daemon dd debuggerd dexopt df dhcpcd discard_util dmbserver dmesg dnsmasq drexe drm_android_siso_test drm_sqlite3_test.. 이전 1 2 3 다음