Linux中.NET读取excel组件,不会出现The type initializer for ‘Gdip‘ threw an exception异常

server/2024/11/14 13:12:35/

组件,可通过nuget安装,直接搜名字:
ExcelDataReader
在这里插入图片描述

using ConsoleAppReadFileData.Model;
using ExcelDataReader;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;namespace ConsoleAppReadFileData.FileRead
{/// <summary>///  xls文件读取,/// 使用ExcelDataReader组件读取,不依赖图形组件,兼容Linux/// 不会报这个错误:System.TypeInitializationException : The type initializer for 'Gdip' threw an exception/// </summary>/// 2024-11-8 17:47:46,wanghaolipublic class WantaiExcelRead2{public Analysis_wt_View ReadExcel(string filePath){
#if DEBUGstring dir = @"G:\work\test\11220241060";//filePath = Path.Combine(dir, "2024-11-04_A_1_20241107.xls");filePath = Path.Combine(dir, "2024-11-04_A_2_20241107.xls");#endif//   string filepath2 = "/data/WANTAI03595/2024-11-04_B_1_20241107.xls";Analysis_wt_View analysis_Wt_View = new Analysis_wt_View();try{using (var stream = File.Open(filePath, FileMode.Open, FileAccess.Read)){var options = new ExcelReaderConfiguration(){//设置读取Excel文件的编码方式,例如GB2312,用于处理中文字符FallbackEncoding = Encoding.GetEncoding("GB2312"),};//1.打开xls文件using (IExcelDataReader reader = ExcelReaderFactory.CreateReader(stream, options)){do{int rowIndex = 1;/* 行号*/List<Analysis_wt_details> analysislist = new List<Analysis_wt_details>();//循环行while (reader.Read()){if (rowIndex == 1){//实验名称analysis_Wt_View.Experiment_name = reader.GetString(1);}if (rowIndex == 2){//实验时间analysis_Wt_View.Experimental_time = reader.GetString(3);//仪器型号analysis_Wt_View.DeviceModel = reader.GetString(5);//样本数量analysis_Wt_View.Samples_num = Convert.ToInt32(reader.GetValue(1));}if (rowIndex == 3){//仪器编码analysis_Wt_View.Device_code = reader.GetString(6);}if (rowIndex < 10){goto ReadEnd;}if (rowIndex >= 4 && rowIndex < 11){goto ReadEnd;}// Analysis_wt_details  rowInfo = new Analysis_wt_details(); 读取每一行的数据//for (int i = 0; i < reader.FieldCount; i++)//{//    //单元格数据//    var cellValue = reader.GetValue(i);//    Console.Write(cellValue + "\t");                                //}int cell_index = 0;Analysis_wt_details rowInfo = new Analysis_wt_details(){No = Convert.ToInt32(reader.GetValue(cell_index++)),TypeName = reader.GetString(cell_index++),SampleName = reader.GetString(cell_index++),SampleBarcode = reader.GetString(cell_index++),SampleLocation = reader.GetString(cell_index++),Detection = reader.GetString(cell_index++),TestItem = reader.GetString(cell_index++),PCR = reader.GetString(cell_index++),HBV = reader.GetString(cell_index++),HCV = reader.GetString(cell_index++),HIV = reader.GetString(cell_index++),IC = reader.GetString(cell_index++),DetectionResult = reader.GetString(cell_index++),ExperimentalRecords = reader.GetString(cell_index++)};analysislist.Add(rowInfo);ReadEnd:rowIndex++;//Console.WriteLine();//行结束}analysis_Wt_View.Analysislist = analysislist;//循环shell} while (reader.NextResult());}}}catch (Exception ex){LogHelpter.AddLog($"万泰读取excel异常={ex.ToString()}", null, "wantai_error");}return analysis_Wt_View;}}
}

http://www.ppmy.cn/server/140823.html

相关文章

【大模型微调】一文掌握7种大模型微调的方法_大模型如何微调

本篇文章深入分析了大型模型微调的基本理念和多样化技术&#xff0c;细致介绍了LoRA、适配器调整(Adapter Tuning)、前缀调整(Prefix Tuning)等多个微调方法。详细讨论了每一种策略的基本原则、主要优点以及适宜应用场景&#xff0c;使得读者可以依据特定的应用要求和计算资源限…

IntelliJ IDEA 使用心得与常用快捷键

刚开始学习写Java的时候&#xff0c;用的eclipse&#xff0c;正式工作后&#xff0c;主要用的myeclipse&#xff0c;去年初在前辈的推荐下&#xff0c;在2折的时候买了正版的 IntelliJ IDEA 和 Pycharm&#xff0c;12.0版终生使用&#xff0c;一年更新。 使用前早就久闻其名&am…

IntelliJ IDEA 中创建目录时 `.` 和 `/` 的区别

前言 在使用 IntelliJ IDEA 进行项目开发时&#xff0c;合理地组织项目结构对于提高开发效率至关重要。尤其是在创建多级目录时&#xff0c;正确选择分隔符能够避免很多不必要的麻烦。本文将详细介绍在 IntelliJ IDEA 中创建目录时使用 . 和 / 的区别及其应用场景。 1. 使用 …

Docker配置及简单应用

谈论/理解 Docker 的常用核心部分&#xff0c;以下皆在 Ubuntu 操作系统下进行 1 国内源安装 Docker-ce 1.1 配置 Linux 内核流量转发 因为docker和宿主机的端口映射&#xff0c;本质是内核的流量转发功能&#xff0c;所以要对其进行配置 1.1.1 未配置流量转发 如果没有配置流…

记录一次element 表格中input不可编辑的原因

场景:从子组件中把列表数据显示到表格&#xff0c;表格中的数据input不可编辑。 showCouponSelect(couponSelect) {this.benefit.couponSelect JSON.parse(JSON.stringify(couponSelect))console.log(-----showCouponSelect-------)console.log(this.benefit.couponSelect)thi…

Linux 经典面试八股文

快速鉴别十个题 1&#xff0c;你如何描述Linux文件系统的结构&#xff1f; 答案应包括对/, /etc, /var, /home, /bin, /lib, /usr, 和 /tmp等常见目录的功能和用途的描述。 2&#xff0c;在Linux中如何查看和终止正在运行的进程&#xff1f; 期望的答案应涵盖ps, top, htop, …

鸿蒙开发案例:七巧板

【1】引言&#xff08;完整代码在最后面&#xff09; 本文介绍的拖动七巧板游戏是一个简单的益智游戏&#xff0c;用户可以通过拖动和旋转不同形状的七巧板块来完成拼图任务。整个游戏使用鸿蒙Next框架开发&#xff0c;利用其强大的UI构建能力和数据响应机制&#xff0c;实现了…

Leetcode 同构字符串

这道题的意思&#xff0c;其实就是要求&#xff0c;从s->t和从t->s这两个单向映射只要重复的字符映射关系保持一致就okay&#xff0c;所以我们需要创建2个哈希表。 是的&#xff0c;你理解得很正确&#xff01;这道题的核心要求就是确保两个字符串之间的映射关系是一致且…