Golang : How to write CSV data to file
This tutorial is a continuation from previous tutorial on reading CSV file. The code below will demonstrate how easy it is to write CSV data into a file.
package main
import (
"encoding/csv"
"fmt"
"os"
)
func main() {
csvfile, err := os.Create("output.csv")
if err != nil {
fmt.Println("Error:", err)
return
}
defer csvfile.Close()
records := [][]string{{"item1", "value1"}, {"item2", "value2"}, {"item3", "value3"}}
writer := csv.NewWriter(csvfile)
for _, record := range records {
err := writer.Write(record)
if err != nil {
fmt.Println("Error:", err)
return
}
}
writer.Flush()
}
Content from output.csv file
item1,value1
item2,value2
item3,value3
The code above write a single line of CSV data for each loop. To write all CSV data at once, please see WriteAll at
https://www.socketloop.com/references/golang-encoding-csv-writer-writeall-function-example
Reference :
https://www.socketloop.com/references/golang-encoding-csv-newwriter-function-example
See also : Golang : How to read CSV file
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+31.6k Golang : How to convert(cast) string to IP address?
+22.4k Golang : How to read JPG(JPEG), GIF and PNG files ?
+5.4k Clean up Visual Studio For Mac installation failed disk full problem
+8.8k Golang : Find network service name from given port and protocol
+19.2k Golang : Get RGBA values of each image pixel
+8.7k Golang : On lambda, anonymous, inline functions and function literals
+7k Golang : Validate credit card example
+24.4k Golang : How to validate URL the right way
+6.7k Golang : Get expvar(export variables) to work with multiplexer
+12.6k Golang : Pass database connection to function called from another package and HTTP Handler
+6.9k Web : How to see your website from different countries?
+4.8k JQuery : Calling a function inside Jquery(document) block