EOFError: Ran out of input

使用pickle.load(f)加载pickle文件时,报错:EOFError: Ran out of input. 
可能原因:文件为空。 
解决办法:加载非空文件。 
其他解决办法: 

1、加载前判断文件是否为空

import os
scores = {} # scores is an empty dict already
if os.path.getsize(target) > 0:      
    with open(target, "rb") as f:
        unpickler = pickle.Unpickler(f)
        # if file is not empty scores will be equal
        # to the value unpickled
        scores = unpickler.load()

2、捕获异常

open(target, 'a').close()
scores = {};
try:
    with open(target, "rb") as file:
        unpickler = pickle.Unpickler(file);
        scores = unpickler.load();
        if not isinstance(scores, dict):
            scores = {};
except EOFError:
    return {}

--------------------- 本文来自 匠人_C 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/castle_cc/article/details/78193942?utm_source=copy 

posted @   Gabrielle_gao  阅读(2310)  评论(0编辑  收藏  举报
编辑推荐:
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
· Linux系统下SQL Server数据库镜像配置全流程详解
· 现代计算机视觉入门之:什么是视频
· 你所不知道的 C/C++ 宏知识
阅读排行:
· 不到万不得已,千万不要去外包
· C# WebAPI 插件热插拔(持续更新中)
· 会议真的有必要吗?我们产品开发9年了,但从来没开过会
· 【译】我们最喜欢的2024年的 Visual Studio 新功能
· 如何打造一个高并发系统?
点击右上角即可分享
微信分享提示