繁体   English   中英

C#AddIn Excel:使用分隔符在文本文件中导出xls文件

[英]C# AddIn Excel : export xls file in text file with separator

这是我的第一个AddIn excel,在导出带有分隔符(“ |”)的文本文件中的excel文件时遇到了问题。 我想以相同的路径导出excel文件,扩展名为“ .txt”,并且我想用特定字符(“ |”)分隔excel的列。

我在功能区上创建了一个按钮:

private void exportSave_Click(object sender, RibbonControlEventArgs e)
    {
        int lastColumns;           
        lastColumns = usedRange.Columns.Count;
        int endCol = lastColumns;

        Microsoft.Office.Interop.Excel.Worksheet xlSheet = Globals.VATTools.Application.ActiveSheet;
        Microsoft.Office.Interop.Excel.Range usedRange = xlSheet.UsedRange;

        // Save file in .txt in the same path
        string path = System.IO.Path.GetDirectoryName(Process.GetCurrentProcess().MainModule.FileName);
        xlSheet.SaveAs(path, Microsoft.Office.Interop.Excel.XlFileFormat.xlTextWindows);
    }

我不确定“ xlTextWindows”的格式。

我确定了自己的列,但在将其导出到.txt之前不知道如何在列之间添加特定字符

谢谢 !

试试下面的代码:

public static void ExportToPipe(RibbonControlEventArgs e)
{
    string ExportName = @"D:\Pipe.txt";
    Excel.Window window = e.Control.Context;
    Excel.Worksheet sheet = ((Excel.Worksheet)window.Application.ActiveSheet);
    Excel.Range last = sheet.Cells.SpecialCells(Excel.XlCellType.xlCellTypeLastCell, Type.Missing); 

    int lastUsedRow = last.Row;
    int lastUsedColumn = last.Column;

    string output = "";

    for (int i = 1; i <= lastUsedRow; i++)
    {
        for (int j = 1; j <= lastUsedColumn; j++)
        {
            if (sheet.Cells[i, j].Value != null)
            {
                output += sheet.Cells[i, j].Value.ToString();                        
            }
            output += "|";
        }
        output += Environment.NewLine;
     }

     FileStream fs = new FileStream(ExportName, FileMode.Create, FileAccess.Write);
     StreamWriter writer = new StreamWriter(fs);
     writer.Write(output);
     writer.Close();
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM