本文實(shí)例講述了Go語言導(dǎo)出內(nèi)容到Excel的方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:
復(fù)制代碼 代碼如下:
package main
import (
"os"
"encoding/csv"
)
func main() {
f, err := os.Create("haha2.xls")
if err != nil {
panic(err)
}
defer f.Close()
f.WriteString("\xEF\xBB\xBF") // 寫入U(xiǎn)TF-8 BOM
w := csv.NewWriter(f)
w.Write([]string{"編號(hào)","姓名","年齡"})
w.Write([]string{"1","張三","23"})
w.Write([]string{"2","李四","24"})
w.Write([]string{"3","王五","25"})
w.Write([]string{"4","趙六","26"})
w.Flush()
}
希望本文所述對(duì)大家的Go語言程序設(shè)計(jì)有所幫助。
您可能感興趣的文章:- golang與PHP輸出excel示例
- Golang讀寫Excel的方法教程