重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
using System;
创新互联专注于高县网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供高县营销型网站建设,高县网站制作、高县网页设计、高县网站官网定制、小程序开发服务,打造高县网络公司原创品牌,更为您提供高县网站排名全网营销落地服务。using System.Collections.Generic;
using System.Linq;
using System.Text;
using NPOI.SS.UserModel;
using NPOI.HSSF.UserModel;
using System.IO;
namespace www.xinduofen.cn
{
class NpoiOperateExcel
{
///
/// 逐行读取某一个excel文件的某一个工作表有效范围内的全部内容,如果某个单元格中无内容,则将以空字符串形式填写到List《string》的相应位置,以string.IsNullOrEmpty(str)形式判断是否为空即可
///
/// 代表excel表格保存的地址,包括"文件名.xls"
/// 代表将要读取的sheet表的索引位置
///
public static List> rowReadAll(string save_address, int sheet_number)//读取excel表格相应工作表的所有数据
{
List> data = null;
//如果传入参数合法
if (!string.IsNullOrEmpty(save_address) && sheet_number > 0){
int rowAllCnt = NpoiOperateExcel.rowORcolAllCount(save_address,sheet_number,true);
int colAllCnt = NpoiOperateExcel.rowORcolAllCount(save_address,sheet_number,false);
data = NpoiOperateExcel.rowReadSection(save_address, 1, rowAllCnt, 1, colAllCnt, sheet_number);
}
return data;
}
public static int rowORcolAllCount(string save_address, int sheet_number, Boolean readFlag)//读取excel表格相应工作表的所有数据
{
int rowORcolCnt = -1;//初始化为-1
FileStream readfile = null;
try
{
//如果传入参数合法
if (!string.IsNullOrEmpty(save_address) && sheet_number > 0)
{
readfile = new FileStream(save_address, FileMode.Open, FileAccess.Read);
HSSFWorkbook hssfworkbook = new HSSFWorkbook(readfile);
ISheet sheet = hssfworkbook.GetSheetAt(sheet_number - 1);
if (sheet != null)
{
if (readFlag)//如果需要读取‘有效行数’
{
rowORcolCnt = sheet.LastRowNum+1;//有效行数(NPOI读取的有效行数不包括列头,所以需要加1)
}
else
{ //如果需要读取‘大有效列数’
for (int rowCnt = sheet.FirstRowNum; rowCnt <= sheet.LastRowNum; rowCnt++)//迭代所有行
{
IRow row = sheet.GetRow(rowCnt);
if (row != null && row.LastCellNum > rowORcolCnt)
{
rowORcolCnt = row.LastCellNum;
}
}
}
}
}
}
catch (Exception)
{
Console.WriteLine("NpoiOperateExcel.rowOrColumnAllCount方法产生了异常!");
}
finally
{
if (readfile != null) { readfile.Close(); }
}
return rowORcolCnt;
}
public static List> rowReadSection(string save_address, int start_row, int stop_row,
int sart_column, int stop_column, int sheet_number)//读取excel表格相应工作表的部分数据
{
List> data = null;//初始化为空
FileStream readfile = null;
try
{
//如果传入参数合法
if (!string.IsNullOrEmpty(save_address) && start_row > 0 && stop_row > 0 && sart_column > 0 && stop_column>0 && sheet_number > 0)
{
readfile = new FileStream(save_address, FileMode.Open, FileAccess.Read);
HSSFWorkbook hssfworkbook = new HSSFWorkbook(readfile);
ISheet sheet = hssfworkbook.GetSheetAt(sheet_number - 1);
if (sheet != null)
{
for (int rowIndex = start_row - 1; rowIndex < stop_row; rowIndex++)
{
IRow row = sheet.GetRow(rowIndex);
if (row != null)
{
List
for (int columnIndex = sart_column - 1; columnIndex < stop_column; columnIndex++)
{
ICell cell = row.GetCell(columnIndex);
if (cell != null)
{
oneRow.Add(cell.StringCellValue);
}
else {
oneRow.Add("");//填充空的数据
}
}
if (data == null)
{
data = new List>();//初始化
}
data.Add(oneRow);
}
else {
List
for (int columnIndex = sart_column - 1; columnIndex < stop_column; columnIndex++)
{
oneRow.Add("");//填充空的数据
}
if (data == null)
{
data = new List>();//初始化
}
data.Add(oneRow);
}
}
}
}
}
catch (Exception)
{
Console.WriteLine("NpoiOperateExcel.rowReadSection方法产生了异常!");
}
finally
{
if (readfile != null) { readfile.Close(); }
}
return data;
}
}
}
内容所有权属于:北京继豪电子(专业研究体质测试仪器)
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。