C# Excel Interop:打开并显示 CSV 文件

发布于 2024-10-11 01:20:34 字数 587 浏览 1 评论 0 原文

嘿,我正在为 excel 互操作编写一个包装器,我希望能够在 excel 中打开 csv 文件并将其显示给用户。我已经掌握了基础知识,但是当我将“visible”设置为“true”并且显示 Excel 时,所有列都被塞到第一个列中,并且显示分隔逗号。

这是我的帮手。

    public MyExcel(string filePath, bool readOnly)
    {
        _app = new Excel.Application();

        _workbooks = _app.Workbooks;

        _workbook = _workbooks.Open(_filepath, 0, _readOnly, 5, "", "", true, Excel.XlPlatform.xlWindows, "\t", !_readOnly, false, 0, true, true, true);
    }

    public void Show()
    {
        _app.Visible = true;
    }

有什么建议吗?

当我通过双击 Excel 打开文件时,一切都会正常处理。

Hey I'm writing a wrapper for the excel interop, I want to be able to open a csv file in excel and show it to the user. I've got the basics down, but when i set visible to true and excel shows up, all columns are jammed into the first, and the separating commas are showing.

here's my helper.

    public MyExcel(string filePath, bool readOnly)
    {
        _app = new Excel.Application();

        _workbooks = _app.Workbooks;

        _workbook = _workbooks.Open(_filepath, 0, _readOnly, 5, "", "", true, Excel.XlPlatform.xlWindows, "\t", !_readOnly, false, 0, true, true, true);
    }

    public void Show()
    {
        _app.Visible = true;
    }

any suggestions?

When i open the file by double clicking Excel processes everything properly.

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

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

发布评论

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

评论(2

度的依靠╰つ 2024-10-18 01:20:34

如果您希望 Excel 解析分隔符,则需要使用 OpenText 方法,而不是 Open。详细信息: http://msdn.microsoft.com /en-us/library/bb223513%28v=office.12%29.aspx

C# 示例:http://msdn.microsoft.com/en-us/library/c9838808.aspx

You will need to use the OpenText method, instead of Open, if you want Excel to parse for delimiters. Details: http://msdn.microsoft.com/en-us/library/bb223513%28v=office.12%29.aspx

An example in C#: http://msdn.microsoft.com/en-us/library/c9838808.aspx

°如果伤别离去 2024-10-18 01:20:34

如果您只想打开文件,那么这比这要容易得多......

 Process proc = new Process();
 proc.StartInfo = new ProcessStartInfo("excel.exe", "output.csv");
 proc.Start();

It is MUCH easier than that if all you want to do is open the file...

 Process proc = new Process();
 proc.StartInfo = new ProcessStartInfo("excel.exe", "output.csv");
 proc.Start();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文