C#导出csv文件,不依赖System.Drawing.Common导出excel文件,导致在docker使用失败。CsvHelper支持跨平台使用
Posted 棉晗榜
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#导出csv文件,不依赖System.Drawing.Common导出excel文件,导致在docker使用失败。CsvHelper支持跨平台使用相关的知识,希望对你有一定的参考价值。
using System.Collections.Generic;
using System.Data;
using System.IO;
namespace WebAPI_Serum.Model
/// <summary>
/// CSV文件转换类
/// </summary>
public static class CsvHelper
/// <summary>
/// 导出报表为Csv
/// </summary>
/// <param name="rows">导出的行数据</param>
/// <param name="strFilePath">物理路径</param>
/// <param name="tableHeader">表头</param>
/// <param name="columName">字段标题,逗号分隔</param>
public static void ExportMakeCsv(List<List<object>> rows, string strFilePath, string tableHeader, string columName)
StreamWriter strmWriterObj = new StreamWriter(strFilePath, false, System.Text.Encoding.UTF8);
strmWriterObj.WriteLine(tableHeader);//表头
strmWriterObj.WriteLine(columName);//列标题
foreach (var cellValues in rows)
string txt = string.Join(",", cellValues);
//替换英文逗号为分号。有些单元格数据包含逗号,不处理会占用右侧单元格
if (cellValues.Exists(x => x != null && x.ToString().Contains(",")))
List<object> douhaoArr=new List<object>();
for (int i = 0; i < cellValues.Count; i++)
var g = cellValues[i];
if (g != null && g.ToString().Contains(","))
g = g.ToString().Replace(",", ";");
douhaoArr.Add(g);
txt= string.Join(",", douhaoArr);
strmWriterObj.WriteLine(txt);//数据行
strmWriterObj.Close();
strmWriterObj.Dispose();
/// <summary>
/// 导出报表为Csv
/// </summary>
/// <param name="dt">DataTable</param>
/// <param name="strFilePath">物理路径</param>
/// <param name="tableheader">表头</param>
/// <param name="columname">字段标题,逗号分隔</param>
public static bool DataTableMakeCsv(DataTable dt, string strFilePath, string tableHeader, string columName)
try
string strBufferLine = "";
StreamWriter strmWriterObj = new StreamWriter(strFilePath, false, System.Text.Encoding.UTF8);
strmWriterObj.WriteLine(tableHeader);
strmWriterObj.WriteLine(columName);
for (int i = 0; i < dt.Rows.Count; i++)
strBufferLine = "";
for (int j = 0; j < dt.Columns.Count; j++)
if (j > 0)
strBufferLine += ",";
strBufferLine += dt.Rows[i][j].ToString();
strmWriterObj.WriteLine(strBufferLine);
strmWriterObj.Close();
return true;
catch
return false;
/// <summary>
/// 将Csv读入DataTable
/// </summary>
/// <param name="filePath">csv文件路径</param>
/// <param name="n">表示第n行是字段title,第n+1行是记录开始</param>
public static DataTable ReadCsv2DataTable(string filePath, int n, DataTable dt)
StreamReader reader = new StreamReader(filePath, System.Text.Encoding.UTF8, false);
int i = 0, m = 0;
reader.Peek();
while (reader.Peek() > 0)
m = m + 1;
string str = reader.ReadLine();
if (str == null) continue;
if (m >= n + 1)
string[] split = str.Split(',');
System.Data.DataRow dr = dt.NewRow();
for (i = 0; i < split.Length; i++)
dr[i] = split[i];
dt.Rows.Add(dr);
return dt;
以上是关于C#导出csv文件,不依赖System.Drawing.Common导出excel文件,导致在docker使用失败。CsvHelper支持跨平台使用的主要内容,如果未能解决你的问题,请参考以下文章