解决 Go 临时文件处理中的读取问题
在 Go 中,写入临时文件后立即访问数据可能会很麻烦堵塞。以下是问题和解决方案的详细分析:
问题:
Go 的 ioutil.TempFile 创建一个临时文件,打开它以进行读写。虽然数据可以成功写入该文件,但后续读取操作会失败。这是因为写入后文件描述符指向文件末尾。
解决方案:
要解决此问题,必须将文件描述符移回在尝试读取文件之前先检查文件的开头。这可以使用 *os.File 的 Seek 方法来实现。通过在读取操作之前添加 tmpFile.Seek(0, 0),文件指针将重置到文件的开头。
代码示例:
package main import ( "bufio" "fmt" "io/ioutil" "log" "os" "path/filepath" ) func main() { tmpFile, err := ioutil.TempFile("", fmt.Sprintf("%s-", filepath.Base(os.Args[0]))) if err != nil { log.Fatal("Could not create temporary file", err) } defer tmpFile.Close() fmt.Println("Created temp file: ", tmpFile.Name()) fmt.Println("Writing some data to the temp file") if _, err = tmpFile.WriteString("test data"); err != nil { log.Fatal("Unable to write to temporary file", err) } else { fmt.Println("Data should have been written") } fmt.Println("Trying to read the temp file now") // Seek the pointer to the beginning tmpFile.Seek(0, 0) s := bufio.NewScanner(tmpFile) for s.Scan() { fmt.Println(s.Text()) } if err = s.Err(); err != nil { log.Fatal("error reading temp file", err) } }
额外注意事项:
以上是为什么Go临时文件写入后立即读取失败?的详细内容。更多信息请关注PHP中文网其他相关文章!