デバイスで rsync を実行しようとしています。私はバイナリを持っていて、/system/xbin/rsync
それを起動しようとしていRuntime.getRuntime().exec
ます。私は Android プログラミングに慣れていないので、スーパーユーザー権限を使用する必要があるかどうかはまだわかりません。
私のコードは次のとおりです。
try {
Process process = Runtime.getRuntime().exec(
"/system/xbin/rsync -avzru /sdcard/Tinybox/ " +
"mattiazeni@192.168.1.6::88124bb378ac994088e704d553de6f19");
System.out.print("RSYNC LAUNCHED\n");
// Reads stdout.
// NOTE: You can write to stdin of the command using
// process.getOutputStream().
BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
int read;
char[] buffer = new char[4096];
StringBuffer output = new StringBuffer();
while ((read = reader.read(buffer)) > 0) {
output.append(buffer, 0, read);
}
reader.close();
// Waits for the command to finish.
process.waitFor();
System.out.print(output);
System.out.print("RSYNC FINISHED\n");
// return output.toString();
} catch (IOException e) {
throw new RuntimeException(e);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
「RSYNC STARTED」「RSYNC FINISHED」と出力するだけです。
しかし、私が実行した場合:
Process process = Runtime.getRuntime().exec("/system/xbin/rsync --help");
LogCat ウィンドウから出力を確認できます。
したがって、スーパーユーザーのアクセス許可を使用する必要があると思われるため、コードを次のように変更しました。
try {
System.out.print("RSYNC STARTED\n");
Process process = Runtime.getRuntime().exec("/system/xbin/su");
DataOutputStream os = new DataOutputStream(process.getOutputStream());
DataInputStream is = new DataInputStream(process.getInputStream());
os.writeBytes("/system/xbin/rsync --help");
String output = new String();
String temp = new String();
output = is.readLine();
System.out.print(output);
os.flush();
System.out.print("RSYNC FINISHED\n");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
}
しかし、コードを実行すると、アプリはエラーなしでフリーズします。