由于antiword只能讲doc的文本读取出来,不能对里面的图片的资源读取,改为使用libreoffice
安装模块
yum install libreoffice
yum install libreoffice-headless
soffice --headless --invisible --convert-to docx /目标文件路径 --outdir /存储路径
不加outdir的话则在当前路径下保存
使用python
import subprocess
output = subprocess.call(["soffice","--headless","--invisible","--convert-to","docx","目标文件路径","--outdir","存储路径"])
网友评论