Python使用with时本猿犯了一个错误

以下这段代码导致压缩包内的图片不完整,重新解压后发现文件大小比原文件小一点点。
但是导致图片无法打开,我也是由图片打不开这个bug一步一步找到是没关流的原因。
这个问题很严重,找了半天才知道是文件流没有关闭导致。

for d in tableData:
    imageFile = urllib2.urlopen(d["image"])
    img_name=str(partId)+"_"+str(d["id"])+getFilePostfix(d["image"])
    img_path=rootDir+img_name
    with open(img_path, "wb") as f
        f.write(imageFile.read())
        zf.write(img_path, img_name)
zf.close()

上面这样写是没有关闭流的,因为代码zf.write(img_path, img_name) 还在with语句块里!!!!
而只有with语句结束,流才会关闭,这其实和java7的try是一样的。

//不需要关流,定义在try的流对象java会自己关
try (FileOutputStream fis=new FileOutputStream(new File("/home/zc/test.py"));FileInputStream fos=new FileInputStream(new File("/home/zc/test.py"))){
    fis.write("mytest".getBytes());
    fos.read();//这句代码写在这里不一定能读取到“mytest”内容,因为此时fis还没关闭也没有flush刷出。
} catch (Exception e) {
    e.printStackTrace();
}

正确的写法:

for d in tableData:
    imageFile = urllib2.urlopen(d["image"])
    img_name=str(partId)+"_"+str(d["id"])+getFilePostfix(d["image"])
    img_path=rootDir+img_name
    with open(img_path, "wb") as f
        f.write(imageFile.read())
    zf.write(img_path, img_name)
zf.close()

这样写就一点问题都没有。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值