我正在 Go 中從 S3 下載一個 zip 文件,如下所示:buff := &aws.WriteAtBuffer{}downloader := s3manager.NewDownloader(session.New(config))_, err := downloader.Download(buff, &input)if err != nil { log.Println(err) return err}data := buff.Bytes()我將“數(shù)據(jù)”發(fā)送到用 Python3 編寫的客戶端,并且需要將此字節(jié)數(shù)組轉換回 zip 文件并將其放在指定目錄中。我試過這個:file_bytes = msg_obj["Params"]try: zf = zipfile.ZipFile(file_bytes, "r") for fileinfo in zf.infolist(): print(zf.read(fileinfo).decode('ascii'))except: print("Err:", sys.exc_info()[0])但我收到此錯誤:OSError: [Errno 36] 文件名太長”我只想“重建”zip 文件并將其保存到目錄中。
2 回答

海綿寶寶撒
TA貢獻1809條經驗 獲得超8個贊
我想出了如何做到這一點。在 go 中,您需要對其進行 base64 編碼(作為字符串)。
buff := &aws.WriteAtBuffer{}
downloader := s3manager.NewDownloader(session.New(config))
_, err := downloader.Download(buff, &input)
if err != nil {
log.Println(err)
return err
}
data := b64.StdEncoding.EncodeToString(buff.Bytes())
然后在 python 中就這么簡單(其中 'file_bytes' 是 base64 編碼的字符串):
d = base64.b64decode(file_bytes)
f = open('home/update_file', 'wb')
f.write(d)
f.close()
bam,你有一個重新組裝的 zip 文件。

一只甜甜圈
TA貢獻1836條經驗 獲得超5個贊
閱讀文檔, ZipFile 類的第一個參數(shù)是文件名或文件對象,而不是 Zip 內容。
如果您想在不創(chuàng)建真實文件的情況下讀取內存中的 ZipFile,則需要使用io.BytesIO包裝 file_bytes 。
- 2 回答
- 0 關注
- 183 瀏覽
添加回答
舉報
0/150
提交
取消