In Go, when writing data to a file using os.File, the file pointer is moved to the end of the file after writing. Subsequently, when attempting to read data from the same file pointer, an immediate io.EOF (End of File) error is encountered because the file pointer is still at the end of the file.
To successfully read data from the same file pointer after writing, you must reset the file pointer to the beginning of the file using the Seek method. Here's how you can modify the example code:
// Seek to the beginning of the file before reading _, err := f.Seek(0, 0) if err != nil { fmt.Println("Error", err) } // Read 10 times r := bufio.NewReader(f) for i := 0; iBy adding the Seek method, the file pointer is reset to the beginning of the file before reading, allowing the subsequent read operations to retrieve the written data without causing an io.EOF error.
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3