Maison > développement back-end > Golang > le corps du texte

Comment lire le contenu d'un fichier texte dans une variable en Golang ?

Patricia Arquette
Libérer: 2024-11-14 14:07:02
original
999 Les gens l'ont consulté

How to read the contents of a text file into a variable in Golang?

Reading a Text File in Golang

How can I read the contents of "file.txt" into a variable in Golang?

package main

import (
    "fmt"
    "os"
    "log"
)

func main() {
    file, err := os.Open("file.txt")
    if err != nil {
        log.Fatal(err)
    }

    fmt.Print(file)
}
Copier après la connexion

Answer:

The provided code successfully reads the file, but it prints the pointer value of the file descriptor rather than the file content. To obtain the file content, you need to read from the file descriptor.

Options for Reading File Content:

  • ReadAll: Reads all file content into memory as bytes.
b, err := io.ReadAll(file)
fmt.Print(b)
Copier après la connexion
  • Read in Chunks: Reads the file content in smaller chunks to avoid memory issues with large files.
buf := make([]byte, 32*1024) // Define your buffer size.

for {
    n, err := file.Read(buf)

    if n > 0 {
        fmt.Print(buf[:n]) // Your read buffer.
    }

    if err == io.EOF {
        break
    }
    if err != nil {
        log.Printf("read %d bytes: %v", n, err)
        break
    }
}
Copier après la connexion
  • bufio Scanner: Advances the token by newline by default.
scanner := bufio.NewScanner(file)

for scanner.Scan() {
    fmt.Println(scanner.Text()) // Token in unicode-char
    fmt.Println(scanner.Bytes()) // Token in bytes
}
Copier après la connexion

Additional Resources:

  • [go-lang file cheatsheet](https://go-lang-file-utils.readthedocs.io/)

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Derniers articles par auteur
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal