doutao4480 2012-10-15 07:48
浏览 628
已采纳

google golang exec退出状态2和1

I want execute the dexdump in Android SDK platform-tools on Go language.

I already set the PATH variable. (I'm use Ubuntu 12.04)

Here is my code:

package main

import (
    "bytes"
    "fmt"
    "log"
    "os/exec"
)

func main() {
    path, err := exec.LookPath("dexdump")
    if err != nil {
        log.Fatal(err)
    }
    fmt.Println(path)

    cmd := exec.Command(path)
    var out bytes.Buffer
    cmd.Stdout = &out
    err2 := cmd.Run()
    if err2 != nil {
        log.Fatal(err2)
    }
    fmt.Printf("%q
", out.String())
}

Result: /home/gunwoo/android-sdk-linux/platform-tools/dexdump

2012/10/15 16:44:39 exit status 2

exit status 1

why go doesn't find the path?

  • 写回答

1条回答 默认 最新

  • douwu8524 2012-10-15 08:37
    关注

    You don't provide any arguments for the exec.Run dexdump command, which possibly generates an error like:

    dexdump: no file specified
    dexdump: [-f] [-h] dexfile...
    
    -d : disassemble code sections
    -f : display summary information from file header
    -h : display file header details
    -C : decode (demangle) low-level symbol names
    -S : compute sizes only
    

    What output do you get when you run the following version of the program?

    package main
    
    import (
        "bytes"
        "fmt"
        "log"
        "os/exec"
    )
    
    func main() {
        path, err := exec.LookPath("dexdump")
        if err != nil {
            log.Fatal("LookPath: ", err)
        }
        fmt.Println(path)
        cmd := exec.Command(path)
        var out bytes.Buffer
        cmd.Stdout = &out
        err = cmd.Run()
        fmt.Printf("%s
    ", out.String())
        if err != nil {
            log.Fatal("Run: ", err)
        }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 adb push异常 adb: error: 1409-byte write failed: Invalid argument
  • ¥15 android报错 brut.common.BrutException: could not exec (exit code = 1)
  • ¥15 nginx反向代理获取ip,java获取真实ip
  • ¥15 eda:门禁系统设计
  • ¥50 如何使用js去调用vscode-js-debugger的方法去调试网页
  • ¥15 376.1电表主站通信协议下发指令全被否认问题
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥15 复杂网络,变滞后传递熵,FDA
  • ¥20 csv格式数据集预处理及模型选择
  • ¥15 部分网页页面无法显示!