在C#控制台应用程序中快速运行ADB Shell命令

时间:2014-01-15 18:02:54

标签: c# shell adb

我正在尝试运行快速的adb shell命令。基本上,我想启动adb shell,然后快速连续运行一堆命令。我可以以某种方式重用过程吗?我想在运行时启动adb shell并更改命令文本。

问题在于为每个命令创建一个单独的进程会旋转很多进程,最终会对我产生麻烦。

    static void Main(string[] args)
    {
        const string AdbBroadcast = "shell am broadcast <my_cmd>";


        int broacastIndex = 0;
        while(true)
        {
            Console.WriteLine("Outputting " + broacastIndex);

            System.Diagnostics.Process process = new System.Diagnostics.Process();
            System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
            startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
            startInfo.FileName = "adb";
            startInfo.Arguments = AdbBroadcast;
            process.StartInfo = startInfo;
            process.Start();

            process.WaitForExit();


            Thread.Sleep(250);
            broacastIndex++;

        }

    }

1 个答案:

答案 0 :(得分:0)

当设备没有响应通过Process通过adb发出的shell命令时,您可以检查设备状态,如下所示:

    ProcessStartInfo lcmdInfo1;

    lcmdInfo1 = new ProcessStartInfo(" adb.exe ", "get-state");
    lcmdInfo1.CreateNoWindow = true;
    lcmdInfo1.RedirectStandardOutput = true;
    lcmdInfo1.RedirectStandardError = true;
    lcmdInfo1.UseShellExecute = false;

    Process cmd2 = new Process();
    cmd2.StartInfo = lcmdInfo1;

    var output = new StringBuilder();
    var error = new StringBuilder();

    cmd2.OutputDataReceived += (o, ef) => output.Append(ef.Data);
    cmd2.ErrorDataReceived += (o, ef) => error.Append(ef.Data);
    cmd2.Start();
    cmd2.BeginOutputReadLine();
    cmd2.BeginErrorReadLine();
    cmd2.WaitForExit();
    cmd2.Close();
    lresulterr1 = error.ToString();
    lresult1 = output.ToString();
    cmd2.Dispose();

    //sometimes there is an issue with a previously issued command that causes the device status to be 'Unknown'. Wait until the device status is 'device'
    while (!lresult1.Contains("device"))
    { 
        lcmdInfo1 = new ProcessStartInfo(" adb.exe ", "get-state");
        lcmdInfo1.CreateNoWindow = true;
        lcmdInfo1.RedirectStandardOutput = true;
        lcmdInfo1.RedirectStandardError = true;
        lcmdInfo1.UseShellExecute = false;

        cmd2 = new Process();
        cmd2.StartInfo = lcmdInfo1;

        output = new StringBuilder();
        error = new StringBuilder();

        cmd2.OutputDataReceived += (o, ef) => output.Append(ef.Data);
        cmd2.ErrorDataReceived += (o, ef) => error.Append(ef.Data);
        cmd2.Start();
        cmd2.BeginOutputReadLine();
        cmd2.BeginErrorReadLine();
        cmd2.WaitForExit();
        cmd2.Close();
        lresulterr1 = error.ToString();
        lresult1 = output.ToString();
        cmd2.Dispose();
    }
 //now your device is ready. Go ahead and fire off the shell commands