3

デバイスで 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 {
}

しかし、コードを実行すると、アプリはエラーなしでフリーズします。

4

1 に答える 1

0

わかりました、私はコードのわずかに異なるバージョンを使用しています:

try {
    System.out.print("RSYNC STARTED\n");
    process = Runtime.getRuntime().exec("/system/xbin/su -c sh");
    OutputStream os = process.getOutputStream();
    Log.d("RSYNC","/system/xbin/rsync" + " -avzru /sdcard/download/ mattiazeni@192.168.1.6::TinyBox &");
    writeLine( os, "/system/xbin/rsync" + " -avzru /sdcard/download/ mattiazeni@192.168.1.6::TinyBox &");

    os.flush();
    System.out.print("RSYNC FINISHED\n");
    }
catch ( IOException e ) {
   e.printStackTrace();
}   

問題はsuコマンドにあることを理解しました。rsync を使用して起動suすると、前に述べたようにエラー メッセージが表示されずにブロックされます。suコマンドを削除して起動すると、次のようになります。

try {
    System.out.print("RSYNC STARTED\n");
    process = Runtime.getRuntime().exec("sh");
    OutputStream os = process.getOutputStream();
    Log.d("RSYNC","/system/xbin/rsync" + " -avzru /sdcard/download/ mattiazeni@192.168.1.6::TinyBox &");
    writeLine( os, "/system/xbin/rsync" + " -avzru /sdcard/download/ mattiazeni@192.168.1.6::TinyBox &");

    os.flush();
    System.out.print("RSYNC FINISHED\n");
    }
catch ( IOException e ) {
   e.printStackTrace();
}   

正常に動作しますが、もちろん、権限がなく同期が機能しないため、rsync からエラーが発生しました。どうすれば問題を解決できますか??

于 2013-01-15T06:18:24.960 に答える