1 回答
TA贡献1833条经验 获得超4个赞
我发现通过实验,我收到了错误,因为我正在打电话
stdo,g := ioutil.ReadAll(stdout)
stde,f := ioutil.ReadAll(stderr)
后
d := cmd.Wait()
所以会发生什么是标准输出,标准错误管道在cmd.Wait()返回后关闭。
下面是代码注释 cmd.StderrPipe()
// StderrPipe returns a pipe that will be connected to the command's
// standard error when the command starts.
// The pipe will be closed automatically after Wait sees the command exit.
所以很明显,我们无法在 stdout 和 stderr 关闭后读取它们。
我们也无法在命令开始之前读取它们。所以我们必须把它们放在开始和等待之间。
这是修复该问题的代码。
package main
import (
"fmt"
"os/exec"
"io/ioutil"
)
func main() {
cmd := exec.Command("psql")
stdout, err := cmd.StdoutPipe()
if err != nil {
fmt.Printf("Error: %s", err)
}
stderr, err := cmd.StderrPipe()
if err != nil {
fmt.Printf("Error: %s", err)
}
err = cmd.Start()
if err != nil {
fmt.Printf("Start error %s",err)
}
stdo,g := ioutil.ReadAll(stdout)
stde,f := ioutil.ReadAll(stderr)
d := cmd.Wait()
if d != nil {
fmt.Println(d)
}
if g != nil {
fmt.Println(g)
}
if f !=nil {
fmt.Println(f)
}
fmt.Printf("Standard err is %s \n", stde)
fmt.Printf("Standard out is %s \n",stdo)
}
- 1 回答
- 0 关注
- 254 浏览
添加回答
举报