C#Excel读取

来源http://www.manew.com/thread-140829-1-1.html

第一步 创建文件夹

在这里插入图片描述

第二部导入

在这里插入图片描述
资源在此
链接:https://pan.baidu.com/s/1s1ZW-QU2XNik2ovPgbQr6Q
提取码:amcc

第三步 创建一个新场景将(下面)脚本挂在一个物体上面

using UnityEngine;
using UnityEngine.UI;
using Excel;
using System.Data;
using System.IO;
public class ReadExcel : MonoBehaviour
{


	void Start()
	{
		Read();
	}

	private void Read()
	{
		string path = Application.streamingAssetsPath + "/XLSTest.xls";

		FileStream stream = File.Open(path, FileMode.Open, FileAccess.Read, FileShare.Read);
		IExcelDataReader excelReader = ExcelReaderFactory.CreateBinaryReader(stream);
		//IExcelDataReader excelReader = ExcelReaderFactory.CreateOpenXmlReader(stream);
		DataSet result = excelReader.AsDataSet();

		int rows = result.Tables[0].Rows.Count;
		int cols = result.Tables[0].Columns.Count;
		string text = "";
		for (int i = 0; i < rows; i++)
		{
			for (int j = 0; j < cols; j++)
			{
				text += result.Tables[0].Rows[i][j].ToString() + "|";
			}
			text += "\n";
		}
		Debug.LogError(text);
	}
}

如果这个不行
IExcelDataReader excelReader = ExcelReaderFactory.CreateBinaryReader(stream);
就用这个
IExcelDataReader excelReader = ExcelReaderFactory.CreateOpenXmlReader(stream);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值