Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Are you using a root device or emulator? I'm asking this because there are only a few devices that let you execute root commands – VitoShadow Oct 16 '11 at 0:15
I'm using a rooted device. Executing each command seperately works fine but I get many su toasts, I want to run the commands from a single su process instance... – Oren Oct 16 '11 at 1:34

1 Answer

FWIW, I've just come across the same issue, and it seems like I've resolved it by checking r.ready() on the BufferedReader. If there are no more lines to be read from the process output, then r.ready() returns false. I don't know how reliable this will be across different versions of the OS, but it works on 2.3.

Edit: also, before starting to read the output, make sure to sleep for a bit (say, 200ms) so that all of the output from your command gets in the buffer.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.