Process sh = Runtime.getRuntime().exec("su", null,null);
OutputStream os = sh.getOutputStream();
os.write(("/system/bin/screencap -p " + "/sdcard/img.png").getBytes("ASCII"));
os.flush();
os.close();
sh.waitFor();
これは、以下のスクリーンショットを取得するためのシェル コマンドのコードですが、部分的な出力が表示されるだけで、理由がわかりません
(adb shell /system/bin/screencap -p /sdcard/img.png)