Vielleicht hat es etwas mit Android zu tun, aber IMO nicht viel.
package com.main.app;
import java.io.BufferedReader;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Scanner;
import android.app.Activity;
import android.app.AlertDialog;
import android.os.Bundle;
import android.widget.TextView;
public class RootPermissionActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
try {
Process p = Runtime.getRuntime().exec("su");
DataOutputStream outputStream = new DataOutputStream(p.getOutputStream());
outputStream.writeBytes("touchasd /m\n");
//codes below used to get the error output, but get nothing.
TextView suCommandMessage = (TextView)findViewById(R.id.suCommandMessage);
BufferedReader d = new BufferedReader(new InputStreamReader(p.getErrorStream()));
String msg;
while((msg = d.readLine()) != null) {
suCommandMessage.setText(msg);
}
outputStream.writeBytes("exit \n");
p.waitFor();
} catch(IOException e) {
new AlertDialog.Builder(this)
.setTitle("Exception")
.setMessage("IOException: " + e)
.setPositiveButton("OK", null)
.show();
} catch(InterruptedException e) {
new AlertDialog.Builder(this)
.setTitle("Exception")
.setMessage("InterruptedException: " + e)
.setPositiveButton("OK", null)
.show();
}
}
}
Zuerst erstelle ich einen neuen Prozess su
um die Root-Berechtigung zu erhalten, ist es nur ein Unterprozess, um Shell-Befehle auszuführen, dann schreibe ich einige Codes in den Unterprozess, alles ist OK. dann möchte ich die Fehlerausgabe des Unterprozesses erhalten, also schreibe ich einen falschen Befehl touchasd /m\n
aber ich weiß nicht, wie ich die Fehlerausgabe des Unterprozesses erhalte, kann mir jemand helfen? thx. :)