登录
首页 >  Golang >  Go问答

在不解压到磁盘的情况下读取 tar 文件的内容

来源:Golang技术栈

时间:2023-04-14 18:50:23 450浏览 收藏

珍惜时间,勤奋学习!今天给大家带来《在不解压到磁盘的情况下读取 tar 文件的内容》,正文内容主要涉及到golang等等,如果你正在学习Golang,或者是对Golang有疑问,欢迎大家关注我!后面我会持续更新相关内容的,希望都能帮到正在学习的大家!

问题内容

我已经能够遍历 tar 文件中的文件,但我被困在如何将这些文件的内容作为字符串读取。我想知道如何将文件的内容打印为字符串?

这是我下面的代码

package main

import (
    "archive/tar"
    "fmt"
    "io"
    "log"
    "os"
    "bytes"
    "compress/gzip"
)

func main() {
    file, err := os.Open("testtar.tar.gz")

    archive, err := gzip.NewReader(file)

    if err != nil {
        fmt.Println("There is a problem with os.Open")
    }
    tr := tar.NewReader(archive)

    for {
        hdr, err := tr.Next()
        if err == io.EOF {
            break
        }
        if err != nil {
            log.Fatal(err)
        }

        fmt.Printf("Contents of %s:\n", hdr.Name)
    }
}

正确答案

只需将 tar.Reader 用作要读取的每个文件的 io.Reader 即可。

tr := tar.NewReader(r)

// get the next file entry 
h, _ := tr.Next() 

如果您需要将整个文件作为字符串:

// read the complete content of the file h.Name into the bs []byte
bs, _ := ioutil.ReadAll(tr)

// convert the []byte to a string
s := string(bs)

如果您需要逐行阅读,那么这会更好:

// create a Scanner for reading line by line
s := bufio.NewScanner(tr)

// line reading loop
for s.Scan() {

  // read the current last read line of text
  l := s.Text()

  // ...and do something with l

}

// you should check for error at this point
if s.Err() != nil {
  // handle it
}

以上就是《在不解压到磁盘的情况下读取 tar 文件的内容》的详细内容,更多关于golang的资料请关注golang学习网公众号!

声明:本文转载于:Golang技术栈 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>
评论列表