Q:

Golang program to write a structure of binary data into the file

belongs to collection: Golang File Handling Programs

0

In this program, we will create a structure and write data into binary format in a specified file.

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 write a structure of binary data into the file is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Golang program to write a structure of
// binary data into a file

package main

import "encoding/binary"
import "fmt"
import "os"

type Str struct {
	intNum   uint8
	floatNum float32
}

func main() {
	file, err := os.Create("data.bin")
	if err != nil {
		fmt.Println("Couldn't open file")
	}

	var st = Str{10, 2.3}

	err = binary.Write(file, binary.LittleEndian, st)
	if err != nil {
		fmt.Println("Write failed")
	}

	fmt.Println("Structure written into file successfully")

	file.Close()
}

Output:

Structure written into file successfully

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 fmtos packages then we can use a function related to the fmt and os package.

Here, we also imported the "encoding/binary" package to read and write data into binary format.

type Str struct{
	intNum   uint8
	floatNum float32
}

In the above code, we created a structure Str that contains integer and float numbers.

In the main() function, we created a file "data.bin" and write the structure object in binary format into the file using binary.Write() function. After that, we printed the "Structure written into file successfully" message on the console screen.

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

total answers (1)

Golang File Handling Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Golang program to read a structure from the file... >>
<< Golang program to create a temp file in the specif...