Android アプリの中で直接コマンド実行したいときがあろう。 system 関数みたいなもんがあるのかと調べたら、こんな感じにするらしい。 Run native executable in Android App - namespace gimite なるほど。おもしろそうじゃなイカ。あとで、やってみよう。 以下、引用。 try { // Executes the command. Process process = Runtime.getRuntime().exec("/system/bin/ls /sdcard"); // Reads stdout. // NOTE: You can write to stdin of the command using // process.getOutputStream(). BufferedReader reader = new Buffer