使用 Microsoft Office 兼容性包的 excelcnv 将 xlsx 转换为 xls

发布于 2024-12-09 05:28:02 字数 266 浏览 0 评论 0原文

互联网上说您可以使用 Microsoft Office Compitablity 将 xlsx 文件转换为 xls 文件,如下所示:
"C:\Program Files\Microsoft Office\Office14\excelcnv" -nme -oice D:\test\new.xlsx D:\test\old.xls
但是,这是反向工作的 - 它将 xls 文件转换为 xlsx 文件。有谁知道excelcnv开关将xlsx转换为xls?

The internet says that you can convert xlsx files to xls files using Microsoft Office Compitablity like this:
"C:\Program Files\Microsoft Office\Office14\excelcnv" -nme -oice D:\test\new.xlsx D:\test\old.xls
However, this works backwards - it converts xls files to xlsx files. Does anyone know the excelcnv switches to convert xlsx to xls?

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

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

发布评论

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

评论(2

风透绣罗衣 2024-12-16 05:28:02

对我来说,使用 Office 2003 的兼容性(转换)包,只需切换您引用的示例中的参数位置即可;例如,如果这也适用于 ~\Office14 (我假设并希望如此),请以这种方式更改命令:

"C:\Program Files\Microsoft Office\Office14\excelcnv" -nme -oice D:\test\old.xls D:\test\new.xlsx

在我的例子中,是让它工作的特定命令,我发现它 那边 (并且只是像这样反转参数),是 这:

"C:\Program Files (x86)\Microsoft Office\Office12\excelcnv.exe" -oice "C:\scripts\test1.xls" "C:\scripts\test1.xlsx"

For me, using the compatibility (conversion) pack for Office 2003, simply switching the places of the parameters in the example you cite works; e.g. if this also works for ~\Office14 (which I assume and hope it does), change the command this way:

"C:\Program Files\Microsoft Office\Office14\excelcnv" -nme -oice D:\test\old.xls D:\test\new.xlsx

In my case, the particular command that gets it to work, which I found yonder (and simply reversed the parameters like so), is this:

"C:\Program Files (x86)\Microsoft Office\Office12\excelcnv.exe" -oice "C:\scripts\test1.xls" "C:\scripts\test1.xlsx"
淡淡の花香 2024-12-16 05:28:02

我在寻找使用命令行将 XLSX 转换为 XLS 的方法时遇到了这个问题。我无法使用此处提供的解决方案,但我设法通过安装 Libre Office 5 然后使用以下命令找到了解决方案:

"C:\Program Files\libreoffice 5\program\soffice.exe" --convert-to xls "original-file.xlsx"

这将文件输出为“original-file.xls”

I came across this question whilst looking for a way to convert XLSX to XLS using the command line. I couldn't get the solution presented here to work, but I managed to find a solution by installing Libre Office 5 then using the command:

"C:\Program Files\libreoffice 5\program\soffice.exe" --convert-to xls "original-file.xlsx"

This outputted the file as "original-file.xls"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文