打开和写入文件时出错

时间:2015-04-18 11:45:46

标签: file go io

我想打开一个文件并写一些文本,但是我收到以下错误:

.\hello.go:13: cannot use msg (type string) as type []byte in argument to f.Write

到目前为止,这是我的代码:

package main

import (
    "os"
)

func printer(msg string) (err error) {
    f, err := os.Create("helloworld.txt")
    if err != nil {
        return err
    }
    defer f.Close()
    f.Write(msg)
    return err
}

func main() {
    printer("Hello World")
}

1 个答案:

答案 0 :(得分:5)

使用io.WriteString(f, msg)f.Write([]byte(msg))io.Copy(f, strings.NewReader(msg))