Q:

Golang program to read bytes from the file

belongs to collection: Golang File Handling Programs

0

In this program, we will read bytes from the existing file using Read() function and print data 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 read bytes from the file is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Golang program to read bytes
// from the file

package main

import "os"
import "fmt"

func main() {
	Myfile, err := os.Open("Sample.txt")
	if err != nil {
		fmt.Println("Error opening file!!!")
	}

	byteBuff := make([]byte, 12)
	totalLen, err := Myfile.Read(byteBuff)
	if err != nil {
		fmt.Println(err)
	}
	fmt.Printf("File Data: \n%s\n", string(byteBuff[:totalLen]))

	Myfile.Close()
}

Output:

File Data: 
Hello World

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.

In the main() function, we read 12 bytes from the existing "Sample.txt" file and print the result 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 demonstrate the Seek() function ... >>
<< Golang program to write data bytes into a file...