在 C# 中使用 Visual Studio 2010 并尝试从 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");
}
}
}
参考: