Q:

Golang program to encode a string array using json.Marshal() function

belongs to collection: Golang JSON Programs

0

In this program, we will encode an array of strings using json.Marshal() function and then print the result on the console screen.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to encode a string array using json.Marshal() function is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Golang program to encode a string array
// using json.Marshal() function

package main

import "fmt"
import "encoding/json"

func main() {
	//Create a string array colors with 3 values.
	colors := []string{"red", "green", "blue"}
	result, _ := json.Marshal(colors)
	fmt.Println(string(result))
}

Output:

["red","green","blue"]

Explanation:

In the above program, we declare the package main. The main package is used to tell the Go language compiler that the package must be compiled and produced the executable file. Here, we imported the fmtencoding/json packages then we can use a function related to the fmt and encoding/json package.

In the main() function, we used json.Marshal() function to encode created array of strings. After that, we printed the encoded values using the string() function on the console screen.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Golang program to encode a map using json.Marshal(... >>
<< Golang program to encode Boolean, integer, and flo...