读取二进制文件时如何解决EOF错误 [英] How to solve an EOF error when reading a binary file

查看:193
本文介绍了读取二进制文件时如何解决EOF错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

class CarRecord:                    # declaring a class without other methods
  def init (self):                # constructor
    self .VehicleID = ""
    self.Registration = ""
    self.DateOfRegistration = None
    self.EngineSize = 0
    self.PurchasePrice = 0.00

import pickle                       # this library is required to create binary f iles
ThisCar = CarRecord()
Car = [ThisCar for i in range (100)]

CarFile = open ('Cars.DAT', 'wb')   # open file for binary write

for i in range (100) :              # loop for each array element
    pickle.dump (Car[i], CarFile)   # write a whole record to the binary file

CarFile.close() # close file

CarFile = open( 'Cars.DAT','rb')    # open file for binary read
Car = []                            # start with empty list
while True:                         # check for end of file
    Car.append(pickle.load(CarFile))# append record from file to end of l i st

CarFile.close()


推荐答案

这是什么?

while True:  # check for end of file
    try:
        Car.append(pickle.load(CarFile))  # append record from file to end of l i st
    except EOFError:
        print('EOF!!!')
        break

这篇关于读取二进制文件时如何解决EOF错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆