我试图以编程方式截取 Android 屏幕的屏幕截图。我已经完成了以下代码:
private void getsnap(){
try{
Process sh = Runtime.getRuntime().exec("su", null, null);
OutputStream os = sh.getOutputStream();
String filePath = this.getFilesDir().getPath().toString() + "/fileName1.jpeg";
os.write(("/system/bin/screencap -p " + filePath).getBytes("ASCII"));
os.flush();
os.close();
sh.waitFor();
}
catch (Exception e)
{
e.printStackTrace();
}
}
java.io.IOException: write failed: EPIPE (Broken pipe)
请问有人可以帮忙吗?我已经检查了其他帖子,但没有找到任何解决我问题的方法。
编辑:
请注意,错误发生在行中os.write()
。