使用Visual Studio 2010的C#的新增功能,尝试从Excel工作表获取文本文件中的输出。 Excel工作表仅包含一列,其数值如下所示:

ColumnA
-------
222
333
444
555
666
777
888
999
877
566
767
678
767


我试图像这样在文本文件中获取输出:

222, 333, 444,
555, 666, 777,
888, 999, 877,
566, 767, 678,
767


提前致谢。

最佳答案

这应该使用BytesCout SpreadSheet SDK来完成:

using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using Bytescout.Spreadsheet;

namespace Converting_XLS_to_TXT
{
class Program
{
static void Main(string[] args)
{
// Create new Spreadsheet from SimpleReport.xls file
Spreadsheet document = new Spreadsheet("SimpleReport.xls");

// delete output file if exists already
if (File.Exists("SimpleReport.txt")){
File.Delete("SimpleReport.txt");
}

// save into TXT
document.Workbook.Worksheets[0].SaveAsTXT("SimpleReport.txt");

}
}
}


参考文献:


BytesCout SpreadSheet Tutorial

关于c# - 使用C#从excel写入文本文件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11528767/

10-09 18:06