I'm trying to run a shell command using superuser (su) periodically in the following way:
first I get the su process:
Process p = Runtime.getRuntime().exec("su");
then, periodically I run:
p.getOutputStream().write("some shell command".getBytes());
BufferedReader r = new BufferedReader(new InputStreamReader(p.getInputStream()));
String line;
while ((line = r.readLine()) != null) //Process output line
this problem is that the r.readLine() blocks and does not return never. only if I create a new su process and add p.getOutputStream().close() before reading output the code succeeds.
is there a way to use a single su process for issuing shell commands?