写的BLOB MySQL的Python文件(Write file from BLOB mysql p

2019-09-22 05:07发布

我试图从数据库中获取文件,并将其写入到磁盘中。 该文件存储为BLOB。

现在,我有以下代码:

#!/usr/bin/python
import MySQLdb

db2 = MySQLdb.connect(host="localhost",
                      user="root",
                      passwd="root",
                      db="digit")

cur = db2.cursor()
#get the name of the file
cur.execute("SELECT Name FROM ContentFiles WHERE ID=3")
nombre = cur.fetchone()
#open file and write into.
with open(nombre[0],"wb") as output_file:
    cur.execute("SELECT File FROM ContentFiles WHERE ID=3")
    ablob = cur.fetchone()
    output_file.write(ablob[0])

任何帮助,将不胜感激。 谢谢 :)

我调试和它获得的文件,并将其写入磁盘,但是当我打开它显示了一个错误说:

Not a JPEG file: starts with 0x2f 0x39

Answer 1:

我找到了解决办法,我需要用解码(“的base64”)......这是一个简单的问题:/

cur = db2.cursor()
#get the file
cur.execute("SELECT mimetype,File,Name FROM ContentFiles WHERE ContentID=10414")
archivo = cur.fetchone()

imagen = open(archivo[2],'wb')
imagen.write(archivo[1].decode('base64'))
imagen.close()


文章来源: Write file from BLOB mysql python