golang 쓰기 csv

3086 단어
 1 package main
 2 
 3 import (
 4     "encoding/csv"
 5     "fmt"
 6     "os"
 7 )
 8 
 9 func main() {
10     file, err := os.OpenFile("111.csv", os.O_CREATE|os.O_RDWR, 0644)
11     if err != nil {
12         fmt.Println("open file is failed, err: ", err)
13     }
14     defer file.Close()
15     //  UTF-8 BOM, 
16     file.WriteString("\xEF\xBB\xBF")
17     w := csv.NewWriter(file)
18     w.Write([]string{" ", " ", " "})
19     //  flush, , , 
20     w.Flush()
21 }

 
다음으로 전송:https://www.cnblogs.com/chaselogs/p/9454953.html

좋은 웹페이지 즐겨찾기