0

我正在尝试检索 commandOutput 的输出,以便将其传递给另一个函数,但 commandCompleted 从未运行过。有什么帮助吗?

Command command = new Command(0, "cat " + file){
    private String output;
    @Override
    public void commandCompleted(int id, int exitCode) {
        Log.d("Commands.Completed", output);
        Log.d("Commands.Completed", "ID: " + id + " & exitCode: " + exitCode);
        saveData(output);
    }

    @Override
    public void commandOutput(int id, String line) {
        output += line + "\n";
    }

    @Override
    public void commandTerminated(int id, String reason) {
    }
};

try {
    RootTools.getShell(true).add(command);
} catch (IOException | RootDeniedException | TimeoutException e) {
    e.printStackTrace();
}
4

1 回答 1

0

commandCompleted(int id, int exitCode)缺少您的实施

super.commandCompleted(id, exitCode);

这可能是问题吗?

如果您导入RootTools

import com.stericson.RootTools.*;

您也可以使用RootTools.Log默认静音的。也许尝试使用

android.util.Log.d("Commands.Completed", output);

只是为了排除这种情况。

于 2016-04-20T14:03:17.160 回答