我正在使用此代码:
try
{
process = Runtime.getRuntime().exec("su");
os = new DataOutputStream(process.getOutputStream());
os.writeBytes("getevent /dev/input/event6 >/sdcard/test.txt \n ");
os.flush();
}
catch (Exception e)
{
LogWrite.d(tag, "error=="+e.toString());
}
我想根据需要停止此过程或停止写入test.txt。我怎么能够 实现这个目标?
谢谢和问候