如何在Linux、Nativly(Python、C、Java)下提取office嵌入的OLE文件?

发布于 2024-09-27 19:56:43 字数 141 浏览 2 评论 0原文

我正在尝试提取嵌入在 Word 文档中的 Excel 文档作为 OLE,但它很难成功。

我需要将它放在服务器端脚本中,因此控制台或脚本是必要的。自动化 Open Office 非常消耗资源。

有没有任何工具或库可以做到这一点?请帮忙..

I am trying to extract Excel Documents which embedded inside word document as OLE but its failing hard.

I need to put it in server side script so console or script is necessary. And automating Open Office is very resource hungry ..

Is there any tool or libraries to do this ? Please help..

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

洛阳烟雨空心柳 2024-10-04 19:56:43

我构建了一个 python 模块来完成此操作,请在此处查看。 https://pypi.org/project/AttachmentsExtractor/ 该模块也可以在 Linux 操作系统上运行。

安装库后使用以下代码片段:

 from AttachmentsExtractor import extractor
 abs_path_to_file='Please provide absolute path here '
 path_to_destination_directory = 'Please provide path of the directory where the extracted attachments should be stored'
 extractor.extract(abs_path_to_file,path_to_destination_directory) # returns true if one or more attachments are found else returns false.

I built a python module to do exactly this check it out over here. https://pypi.org/project/AttachmentsExtractor/ also the module can be run on Linux os.

after installing the library use the following code snippet:

 from AttachmentsExtractor import extractor
 abs_path_to_file='Please provide absolute path here '
 path_to_destination_directory = 'Please provide path of the directory where the extracted attachments should be stored'
 extractor.extract(abs_path_to_file,path_to_destination_directory) # returns true if one or more attachments are found else returns false.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文