按钮单击无结果

时间:2013-06-04 19:04:05

标签: c# cmd adb

我正在关注XDA [http://forum.xda-developers.com/showthread.php?t=2042227]关于在C#中设置自己的Android ADB GUI工具包的教程。我说话时GUI设置正确,代码编译正确,但是当我点击安装APK按钮时,它不会将APK安装到我的设备上。

    private void InstallAPK_Click(object sender, EventArgs e)
    {
        var process = Process.Start("CMD.exe", "/c adb install " + textBox1.Text);
        process.WaitForExit();
        MessageBox.Show(".APK is Installed", "", MessageBoxButtons.OK, MessageBoxIcon.Information);

    }

在此代码中找不到任何错误,但它实际上并没有执行ADB命令。 - 任何意见将是有益的!

1 个答案:

答案 0 :(得分:1)

您需要在文件名周围添加引号 - 否则它将无法正确处理包含空格的文件名。