RPA机器人云扩设计器怎么使用C#来读取excel文件数据并写入.txt中
时间: 2024-03-15 18:44:58 浏览: 151
使用C#读取Excel文件数据需要使用Microsoft.Office.Interop.Excel库,以下是读取Excel文件并将数据写入txt文件的示例代码:
```c#
using System;
using System.IO;
using System.Text;
using Microsoft.Office.Interop.Excel;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
// 定义Excel文件路径和txt文件路径
string excelFilePath = "C:\\data\\data.xlsx";
string txtFilePath = "C:\\data\\data.txt";
// 创建Excel对象
Application excel = new Application();
Workbook workbook = excel.Workbooks.Open(excelFilePath);
Worksheet worksheet = workbook.Sheets[1];
// 获取数据范围
Range range = worksheet.UsedRange;
int rowCount = range.Rows.Count;
int columnCount = range.Columns.Count;
// 将数据写入txt文件
StringBuilder sb = new StringBuilder();
for (int i = 1; i <= rowCount; i++)
{
for (int j = 1; j <= columnCount; j++)
{
// 获取单元格数据
string cellValue = range.Cells[i, j].Value2.ToString();
// 将数据添加到StringBuilder中
sb.Append(cellValue + "\t");
}
sb.Append(Environment.NewLine);
}
// 将数据写入txt文件
File.WriteAllText(txtFilePath, sb.ToString(), Encoding.UTF8);
// 关闭Excel对象
workbook.Close(false, Type.Missing, Type.Missing);
excel.Quit();
}
}
}
```
需要注意的是,使用Microsoft.Office.Interop.Excel库需要在项目中添加对Microsoft.Office.Interop.Excel的引用。此外,由于使用COM对象,需要确保Excel已经安装在计算机上。
阅读全文