如何创建CSV Excel文件C#?

我正在寻找创建CSV Excel文件的课程。

预期功能:

  • 使用非常简单
  • 转义逗号和引号,以便excel处理它们
  • 以时区格式导出日期和日期时间
  • 你知道任何一类能够做到吗?


    稍微不同的版本,我使用反射写我的需求。 我不得不将对象列表导出到csv。 如果有人想要使用它的未来。

    public class CsvExport<T> where T: class
        {
            public List<T> Objects;
    
            public CsvExport(List<T> objects)
            {
                Objects = objects;
            }
    
            public string Export()
            {
                return Export(true);
            }
    
            public string Export(bool includeHeaderLine)
            {
    
                StringBuilder sb = new StringBuilder();
                //Get properties using reflection.
                IList<PropertyInfo> propertyInfos = typeof(T).GetProperties();
    
                if (includeHeaderLine)
                {
                    //add header line.
                    foreach (PropertyInfo propertyInfo in propertyInfos)
                    {
                        sb.Append(propertyInfo.Name).Append(",");
                    }
                    sb.Remove(sb.Length - 1, 1).AppendLine();
                }
    
                //add value for each property.
                foreach (T obj in Objects)
                {               
                    foreach (PropertyInfo propertyInfo in propertyInfos)
                    {
                        sb.Append(MakeValueCsvFriendly(propertyInfo.GetValue(obj, null))).Append(",");
                    }
                    sb.Remove(sb.Length - 1, 1).AppendLine();
                }
    
                return sb.ToString();
            }
    
            //export to a file.
            public void ExportToFile(string path)
            {
                File.WriteAllText(path, Export());
            }
    
            //export as binary data.
            public byte[] ExportToBytes()
            {
                return Encoding.UTF8.GetBytes(Export());
            }
    
            //get the csv value for field.
            private string MakeValueCsvFriendly(object value)
            {
                if (value == null) return "";
                if (value is Nullable && ((INullable)value).IsNull) return "";
    
                if (value is DateTime)
                {
                    if (((DateTime)value).TimeOfDay.TotalSeconds == 0)
                        return ((DateTime)value).ToString("yyyy-MM-dd");
                    return ((DateTime)value).ToString("yyyy-MM-dd HH:mm:ss");
                }
                string output = value.ToString();
    
                if (output.Contains(",") || output.Contains("""))
                    output = '"' + output.Replace(""", """") + '"';
    
                return output;
    
            }
        }
    

    使用示例:(根据评论更新)

    CsvExport<BusinessObject> csv= new CsvExport<BusinessObject>(GetBusinessObjectList());
    Response.Write(csv.Export());
    

    请原谅我

    但我认为一个公开的开放源代码库是共享代码并做出贡献,更正和补充的更好方式,例如“我解决了这个问题,我解决了这个问题”

    所以我用主题代码和所有附加内容创建了一个简单的git-repository:

    https://github.com/jitbit/CsvExport

    我还自己添加了一些有用的修复程序。 每个人都可以添加建议,分叉贡献等等等等。给我你的叉子,所以我把它们合并回回购。

    PS。 我发布了克里斯的所有版权声明。 @克里斯,如果你反对这个想法 - 让我知道,我会杀了它。


    读取和写入CSV文件的另一个好方法是filehelpers(开源)。

    链接地址: http://www.djcxy.com/p/35689.html

    上一篇: How to create CSV Excel file C#?

    下一篇: Why am I getting an Out of Memory Error doing ASP .NET Excel Interop?