Golang program to read data from the file in a single line

Here, we are going to learn how to read data from the file in a single line Golang (Go Language)?
Submitted by Nidhi, on April 07, 2021 [Last updated : March 04, 2023]

How to read data from the file in a single line in Golang?

Problem Solution:

In this program, we will read data from the file in a single line using the ReadFile() function of the "ioutil" package.

Program/Source Code:

The source code to read data from the file in a single line is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

Golang code to read data from the file in a single line

// Golang program to read data from the file
// in a single line

package main

import "io/ioutil"
import "fmt"

func main() {
	fileData, _ := ioutil.ReadFile("Sample.txt")
	fmt.Printf("Data in file: %s\n", fileData)
}

Output:

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 "fmt", "io/ioutil" packages then we can use a function related to the "fmt" and "ioutil" package.

In the main() function, we read data from file in a single line using ReadFile() function of "ioutil" package.

After that, we printed the result on the console screen.

Golang File Handling Programs »





Comments and Discussions!

Load comments ↻





Copyright © 2024 www.includehelp.com. All rights reserved.