Q:

Golang program to write and read data from a text file

belongs to collection: Golang File Handling Programs

0

In this program, we will create a text file and save text data into the specified text file. After that, we will read data from the text file 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 write and read data from a text file is given below. The given program is compiled and executed successfully.

// Golang program to Write and Read data
// from a text file

package main

import "fmt"
import "os"
import "io/ioutil"

func WriteData() {
	file, err := os.Create("Sample.txt")
	if err != nil {
		fmt.Println("Unable to open file: %s", err)
	}

	len, err := file.WriteString("Hello World")

	if err != nil {
		fmt.Println("Unable to write data: %s", err)
	}
	file.Close()

	fmt.Printf("%d character written successfully into file", len)
}

func ReadData() {
	textData, err := ioutil.ReadFile("Sample.txt")
	if err != nil {
		fmt.Println("Unable to read data: %s", err)
	}
	fmt.Printf("\nData in file: %s", textData)
}

func main() {
	WriteData()
	ReadData()
}

Output:

11 character written successfully into file
Data in file: 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 created two user defined functions ReadData() and WriteData().

The WriteData() function is used to create a text file "Sample.txt" using os.Create() function and write text data into file using WriteString() file. The WriteString() function returns the number of character written into the file.

The ReadData() function is used to read data from the existing text file and print the data 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 create an empty file... >>
<< Golang program to create a text file...