쓰기 후 Go에서 임시 파일에서 데이터 읽기
Go에서 ioutil.TempFile을 사용하여 임시 파일을 생성하면 파일. 그러나 이후에 파일에서 데이터를 읽으면 쓰기 시 파일 포인터가 파일 끝으로 이동하므로 문제가 발생할 수 있습니다.
이 문제를 해결하려면 파일 포인터를 파일 시작 부분으로 재설정해야 합니다. 쓰기 후 데이터 읽기가 가능해집니다. 이는 *os.File 유형의 Seek 메소드를 사용하여 달성할 수 있습니다. 또한 리소스의 적절한 릴리스를 보장하기 위해 defer를 사용하여 파일을 닫는 것이 좋습니다.
다음은 올바른 구현을 보여주는 예입니다.
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 중국어 웹사이트의 기타 관련 기사를 참조하세요!