golang 匯出資料到csv檔案
來源:互聯網
上載者:User
這是一個建立於 的文章,其中的資訊可能已經有所發展或是發生改變。```go// 匯出裝置列表資訊到csvfunc (ba *businessActor) ExportDeviceListInfo(deviceList []device.AllDevice, filename string) error {// 建立檔案newFile, err := os.Create(filename)if err != nil {return errors.Wrap(err, "建立檔案失敗")}defer func() {newFile.Close()}()// 寫入UTF-8newFile.WriteString("\xEF\xBB\xBF") // 寫入UTF-8 BOM,防止中文亂碼// 寫資料到csv檔案w := csv.NewWriter(newFile)header := []string{"房間號", "門鎖訊號", "門鎖電量", "柚控名稱", "柚控狀態"} //標題data := [][]string{header,}for k, _ := range deviceList {hostIsOnline := ""if deviceList[k].BoxOnline {hostIsOnline := "線上"} else {hostIsOnline := "離線"}context := []string{deviceList[k].RoomName,strconv.Itoa(deviceList[k].Rssi) + "%",strconv.Itoa(deviceList[k].Electric) + "%",deviceList[k].BoxName,hostIsOnline,}data = append(data, context)}// WriteAll方法使用Write方法向w寫入多條記錄,並在最後調用Flush方法清空緩衝。w.WriteAll(data)w.Flush()return err}```344 次點擊