启动 openoffice calc 并打开 csv 文件
我的 .NET C# 应用程序中有一个函数,可以将数据从 DataGridView
导出到 CSV
文件,并使用 Excel
打开该文件。
有没有办法使用 OpenOffice Calc
来做到这一点? IE 如何从我的代码启动 Calc
应用程序并指向我制作的 CSV
文件?
I have a function in my .NET C# application which export data from DataGridView
to CSV
file, and opens the file with Excel
.
Is there a way to do this using OpenOffice Calc
instead?
I.e.
How can I start Calc
application from my code and pointing to the CSV
file I have made?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我为您找到了一篇文章
http://www.opendocument4all.com/download/OpenOffice.net .pdf
这段代码给了你一个想法;
我还为您找到了此链接
创建 OpenOffice Writer使用 C# 编写文档
创建 OpenOffice Calc使用 C# 的文档
C#到 OpenOffice Calc
编辑:
I found an article for you
http://www.opendocument4all.com/download/OpenOffice.net.pdf
And this code gives you an idea;
I also found this links for you
Creating an OpenOffice Writer Document with C#
Creating an OpenOffice Calc Document with C#
C# to OpenOffice Calc
EDIT:
Soner Gonul 向您解释了如何导出为
CSV
。要使用 OpenOffice Calc 打开文件,只需获取 OpenOffice Calc 可执行文件的路径,然后使用参数中的文件路径启动它
即可。
Soner Gonul explained you how to export to
CSV
.To open the file with OpenOffice Calc just get the path of the OpenOffice Calc executable and launch it with your file path in the arguments
That's all.