国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

Python實現壓縮與解壓gzip大文件的方法

2019-11-25 16:33:18
字體:
來源:轉載
供稿:網友

本文實例講述了Python實現壓縮與解壓gzip大文件的方法。分享給大家供大家參考,具體如下:

#encoding=utf-8#author: walker#date: 2015-10-26#summary: 測試gzip壓縮/解壓文件import gzipBufSize = 1024*8def gZipFile(src, dst):  fin = open(src, 'rb')  fout = gzip.open(dst, 'wb')  in2out(fin, fout)def gunZipFile(gzFile, dst):  fin = gzip.open(gzFile, 'rb')  fout = open(dst, 'wb')  in2out(fin, fout)def in2out(fin, fout):  while True:    buf = fin.read(BufSize)    if len(buf) < 1:      break    fout.write(buf)  fin.close()  fout.close()if __name__ == '__main__':  src = r'D:/tmp/src.txt'  dst = r'D:/tmp/src.txt.gz'  ori = r'D:/tmp/ori.txt'  gZipFile(src, dst)  print('gZipFile over!')  gunZipFile(dst, ori)  print('gunZipFile over!')

也可以簡單地封裝成一個類:

class GZipTool:  def __init__(self, bufSize):    self.bufSize = bufSize    self.fin = None    self.fout = None  def compress(self, src, dst):    self.fin = open(src, 'rb')    self.fout = gzip.open(dst, 'wb')    self.__in2out()  def decompress(self, gzFile, dst):    self.fin = gzip.open(gzFile, 'rb')    self.fout = open(dst, 'wb')    self.__in2out()  def __in2out(self,):    while True:      buf = self.fin.read(self.bufSize)      if len(buf) < 1:        break      self.fout.write(buf)    self.fin.close()    self.fout.close()

更多關于Python相關內容感興趣的讀者可查看本站專題:《Python文件與目錄操作技巧匯總》、《Python文本文件操作技巧匯總》、《Python URL操作技巧總結》、《Python圖片操作技巧總結》、《Python數據結構與算法教程》、《Python Socket編程技巧總結》、《Python函數使用技巧總結》、《Python字符串操作技巧匯總》及《Python入門與進階經典教程

希望本文所述對大家Python程序設計有所幫助。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 泸西县| 江达县| 彭泽县| 信宜市| 敦化市| 开封市| 武鸣县| 潜江市| 武汉市| 苏州市| 怀宁县| 玉龙| 卫辉市| 嘉兴市| 会宁县| 长泰县| 临潭县| 正阳县| 理塘县| 兰坪| 金秀| 凉城县| 全椒县| 睢宁县| 武强县| 哈尔滨市| 武鸣县| 连州市| 合阳县| 佛坪县| 曲阜市| 铜鼓县| 黄浦区| 兰州市| 扶沟县| 鹤岗市| 沐川县| 繁峙县| 县级市| 明溪县| 舞钢市|