用于自动将数据输入到 OpenOffice Calc 电子表格的 PowerShell 脚本
我希望能够使用 PowerShell 脚本自动将数据输入到 Open Office 电子表格中,就像使用 PowerShell 自动化 Excel 一样(请参阅此 脚本专家示例)。 这可能吗?
谢谢,魔法安迪
I would like to be able to automate data entry to an Open Office spreadsheet using a PowerShell script, in the same way that Excel can be automated using PowerShell (see this Scripting Guy example). Is this possible?
Thanks, MagicAndi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以使用 UNO CLI 绑定。 不幸的是Powershell不能很好地处理代理对象,所以你需要使用反射。 例如,
您也可以尝试 AODL ,它应该更容易使用,但并没有貌似最近没有更新过。
It is possible using the UNO CLI bindings. Unfortunately Powershell does not cope well with proxy objects, so you need to use reflection. For example,
You could also try AODL which should be much easier to use, but doesn't look like it's been updated recently.