Home > Common Problem > How to store in golang

How to store in golang

尊渡假赌尊渡假赌尊渡假赌
Release: 2023-06-09 10:49:09
Original
1618 people have browsed it

The process of storage in golang is: 1. Create a Go sample file and import JSON data; 2. Define a Person structure type; 3. Start the program through the "main" function and read the name For all the data in the "people.json" file and store it in the data variable; 4. Create an empty Person type slice people and store the result in the &people pointer; 5. Output through "fmt.Printf()" The value of the people variable.

How to store in golang

Operating system for this tutorial: Windows 10 system, Go1.20.1 version, Dell G3 computer.

Golang usually stores and reads data by using standard libraries and third-party libraries such as built-in encoding, json and database/sql.

Below we will introduce some sample code to demonstrate how to use these libraries to store and retrieve data.

Store to file:

The following is a sample code to store JSON data to a file:

package main
import (
"encoding/json"
"fmt"
"io/ioutil"
)
type Person struct {
Name string `json:"name"`
Age  int    `json:"age"`
}
func main() {
people := []Person{
Person{"Alice", 25},
Person{"Bob", 30},
}
data, err := json.Marshal(people)
if err != nil {
panic(err)
}
err = ioutil.WriteFile("people.json", data, 0644)
if err != nil {
panic(err)
}
fmt.Println("Data saved to file.")
}
Copy after login

This example uses the json.Marshal() function Convert the People slice to JSON bytes and write to disk using ioutil.WriteFile().

Read file:

The following is a sample code that reads JSON data from a file and parses it into a structure slice:

package main
import (
"encoding/json"
"fmt"
"io/ioutil"
)
type Person struct {
Name string `json:"name"`
Age  int    `json:"age"`
}
func main() {
data, err := ioutil.ReadFile("people.json")
if err != nil {
panic(err)
}
var people []Person
err = json.Unmarshal(data, &people)
if err != nil {
panic(err)
}
fmt.Printf("%+v\n", people)
}
Copy after login

The above is the detailed content of How to store in golang. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
How to choose golang web mvc framework
From 1970-01-01 08:00:00
0
0
0
Is it necessary to use nginx when using golang?
From 1970-01-01 08:00:00
0
0
0
golang - vim plug-in to write go
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template