62

例如,在 Python 中,我可以执行以下操作:

realout = sys.stdout
sys.stdout = StringIO.StringIO()
some_function() # prints to stdout get captured in the StringIO object
result = sys.stdout.getvalue()
sys.stdout = realout

你能在 Go 中做到这一点吗?

4

4 回答 4

71

我同意你应该使用这些fmt.Fprint功能,如果你可以管理它。但是,如果您不控制要捕获其输出的代码,则可能没有该选项。

Mostafa 的答案有效,但如果你想在没有临时文件的情况下这样做,你可以使用os.Pipe。这是一个与 Mostafa 等效的示例,其中包含一些受 Go 测试包启发的代码。

package main

import (
    "bytes"
    "fmt"
    "io"
    "os"
)

func print() {
    fmt.Println("output")
}

func main() {
    old := os.Stdout // keep backup of the real stdout
    r, w, _ := os.Pipe()
    os.Stdout = w

    print()

    outC := make(chan string)
    // copy the output in a separate goroutine so printing can't block indefinitely
    go func() {
        var buf bytes.Buffer
        io.Copy(&buf, r)
        outC <- buf.String()
    }()

    // back to normal state
    w.Close()
    os.Stdout = old // restoring the real stdout
    out := <-outC

    // reading our temp stdout
    fmt.Println("previous output:")
    fmt.Print(out)
}
于 2012-05-07T03:21:38.580 回答
23

这个答案与前面的答案类似,但使用 io/ioutil 看起来更简洁。

http://play.golang.org/p/fXpK0ZhXXf

package main

import (
  "fmt"
  "io/ioutil"
  "os"
)

func main() {
  rescueStdout := os.Stdout
  r, w, _ := os.Pipe()
  os.Stdout = w

  fmt.Println("Hello, playground") // this gets captured

  w.Close()
  out, _ := ioutil.ReadAll(r)
  os.Stdout = rescueStdout

  fmt.Printf("Captured: %s", out) // prints: Captured: Hello, playground
}
于 2015-03-30T05:35:52.170 回答
15

我不推荐这样做,但你可以通过 altering 来实现os.Stdout。由于这个变量是 type os.File,你的临时输出也应该是一个文件。

package main

import (
    "fmt"
    "io/ioutil"
    "os"
    "path/filepath"
)

func print() {
    fmt.Println("output")
}

func main() {
    // setting stdout to a file
    fname := filepath.Join(os.TempDir(), "stdout")
    fmt.Println("stdout is now set to", fname)
    old := os.Stdout // keep backup of the real stdout
    temp, _ := os.Create(fname) // create temp file
    os.Stdout = temp

    print()

    // back to normal state
    temp.Close()
    os.Stdout = old // restoring the real stdout

    // reading our temp stdout
    fmt.Println("previous output:")
    out, _ := ioutil.ReadFile(fname)
    fmt.Print(string(out))
}

我不推荐,因为这是太多的黑客攻击,而且在 Go 中不是很习惯。我建议将 an 传递io.Writer给函数并将输出写入该函数。这是做几乎相同事情的更好方法。

package main

import (
    "bytes"
    "fmt"
    "io"
    "os"
)

func print(w io.Writer) {
    fmt.Fprintln(w, "output")
}

func main() {
    fmt.Println("print with byes.Buffer:")
    var b bytes.Buffer
    print(&b)
    fmt.Print(b.String())

    fmt.Println("print with os.Stdout:")
    print(os.Stdout)
}
于 2012-05-06T22:03:02.253 回答
3

我认为整个想法根本不可取(竞争条件),但我想人们可能会以与您的示例类似/类比的方式混淆 os.Stdout。

于 2012-05-06T21:16:07.173 回答