РЕШЕНИЕ НАЙДЕНО!Благодаря ссылке, предложенной onit здесь .См. Код ниже: чтобы команды оболочки суперпользователя работали должным образом, сначала необходимо создать оболочку суперпользователя и назначить ее процессу, а затем записать и прочитать ее входные и выходные потоки соответственно.
Process p = Runtime.getRuntime().exec(new String[]{"su", "-c", "system/bin/sh"});
DataOutputStream stdin = new DataOutputStream(p.getOutputStream());
//from here all commands are executed with su permissions
stdin.writeBytes("ls /data\n"); // \n executes the command
InputStream stdout = p.getInputStream();
byte[] buffer = new byte[BUFF_LEN];
int read;
String out = new String();
//read method will wait forever if there is nothing in the stream
//so we need to read it in another way than while((read=stdout.read(buffer))>0)
while(true){
read = stdout.read(buffer);
out += new String(buffer, 0, read);
if(read<BUFF_LEN){
//we have read everything
break;
}
}
//do something with the output