CSV ExcelファイルC#を作成する方法 [閉まっている]


132

CSV Excelファイルを作成するためのクラスを探しています。

期待される機能:

  • 非常に使いやすい
  • カンマと引用符をエスケープして、Excelで適切に処理されるようにします
  • 日付と日時をタイムゾーンに対応した形式でエクスポートします

これができるクラスを知っていますか?


12
質問の部分に質問を投げかけ、回答の部分に独自の回答を投稿することをお勧めします。質問にタグとキーワードを追加して検索できるようにしてください。
Cheeso

重要:「値」にCARRIAGE RETURNSがある場合は、引用符も追加する必要があります。
Alex

@Chrisに感謝します。可能であれば提案します。このコードはKeyNotFoundExceptionをスローする可能性があります。私の回答を参照してください。
ジョセフ

その最良の例...しかし、どうすれば2つのテーブルを1つのファイルに追加できますか?つまり、2つの行の1つのテーブルがあり、他のテーブルは10行で、両方に一意の列名があります.2つの行のテーブルを上と後に追加したいと思います2行のギャップ2番目のテーブルを追加します。
Floki、2015年

回答:


92

自分のニーズに合わせてリフレクションを使用して書いたわずかに異なるバージョン。オブジェクトのリストを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());

5
それは次のようになりました:List <BusinessObject> x = new List <BusinessObject>(); CsvExport <BusinessObject> x = new CsvExport <BusinessObject>(MUsers);
非表示

5
INullableインターフェースはどこから来たのですか?
Kilhoffer、2014

その最良の例...しかし、どうすれば2つのテーブルを1つのファイルに追加できますか?つまり、2つの行の1つのテーブルがあり、他のテーブルは10行で、両方に一意の列名があります.2つの行のテーブルを上と後に追加したいと思います2行のギャップ2番目のテーブルを追加します。
Floki、2015年

2
元の投稿は2011年のものだったので、当時使用されていた.NETバージョンでそれが可能だったかどうかはわかりません。しかし、public string Export()メソッドを削除して、他のメソッドをpublic string Export(bool includeHeaderLiner = true)(デフォルトのパラメーター値を使用して)に変更してみませんか。繰り返しになりますが、デフォルトのパラメーターが2011年に利用可能であったかどうかはわかりませんが、現在のコードは私には正統に見えるだけです。
Kevin Cruijssen、2015

19

私を許してください

しかし、私はパブリックオープンソースリポジトリがコードを共有し、貢献、修正、および「私はこれを修正しました、私はそれを修正しました」のような追加を行うためのより良い方法だと思います

だから私はトピックスターターのコードとすべての追加から単純なgit-repositoryを作りました:

https://github.com/jitbit/CsvExport

私もいくつかの便利な修正を加えました。誰もが提案を追加したり、フォークして貢献したりするなどすることができます。フォークを送って、マージしてリポジトリに戻します。

PS。クリスの著作権表示をすべて投稿しました。@Chrisあなたがこの考えに反対の場合-私に知らせてください、私はそれを殺します。


11

CSVファイルを読み書きするもう1つの優れたソリューションは、filehelpers(オープンソース)です。


注:Excelのサポートは基本的なシナリオのみを対象としています。現在実装されているExcelのサポートは、基本的なシナリオのみを対象としています。カスタムの書式設定、グラフなどが必要な場合は、カスタムコードを入手する必要があります。NPOIライブラリを直接使用することを強くお勧めします
AK

6

すべてのforeachループの代わりにstring.Joinを使用するのはどうですか?


String.Joinはstring []でのみ機能しますが、List <string>の一部の機能を使用しています。
Chris

12
String.Join("," , List<string>)また働きます。
認知症、2012年

6

誰かがこれをIEnumerableの拡張メソッドに変換したい場合:

public static class ListExtensions
{
    public static string ExportAsCSV<T>(this IEnumerable<T> listToExport, bool includeHeaderLine, string delimeter)
    {
        StringBuilder sb = new StringBuilder();

        IList<PropertyInfo> propertyInfos = typeof(T).GetProperties();

        if (includeHeaderLine)
        {
            foreach (PropertyInfo propertyInfo in propertyInfos)
            {
                sb.Append(propertyInfo.Name).Append(",");
            }
            sb.Remove(sb.Length - 1, 1).AppendLine();
        }

        foreach (T obj in listToExport)
        {
            T localObject = obj;

            var line = String.Join(delimeter, propertyInfos.Select(x => SanitizeValuesForCSV(x.GetValue(localObject, null), delimeter)));

            sb.AppendLine(line);
        }

        return sb.ToString();
    }

    private static string SanitizeValuesForCSV(object value, string delimeter)
    {
        string output;

        if (value == null) return "";

        if (value is DateTime)
        {
            output = ((DateTime)value).ToLongDateString();
        }
        else
        {
            output = value.ToString();                
        }

        if (output.Contains(delimeter) || output.Contains("\""))
            output = '"' + output.Replace("\"", "\"\"") + '"';

        output = output.Replace("\n", " ");
        output = output.Replace("\r", "");

        return output;
    }
}

5

このクラスの素晴らしい仕事。シンプルで使いやすい。クラスを変更して、エクスポートの最初の行にタイトルを含めました。私が共有すると考えました:

使用する:

CsvExport myExport = new CsvExport();
myExport.addTitle = String.Format("Name: {0},{1}", lastName, firstName));

クラス:

public class CsvExport
{
    List<string> fields = new List<string>();

    public string addTitle { get; set; } // string for the first row of the export

    List<Dictionary<string, object>> rows = new List<Dictionary<string, object>>();
    Dictionary<string, object> currentRow
    {
        get
        {
            return rows[rows.Count - 1];
        }
    }

    public object this[string field]
    {
        set
        {
            if (!fields.Contains(field)) fields.Add(field);
            currentRow[field] = value;
        }
    }

    public void AddRow()
    {
        rows.Add(new Dictionary<string, object>());
    }

    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;

    }

    public string Export()
    {
        StringBuilder sb = new StringBuilder();

        // if there is a title
        if (!string.IsNullOrEmpty(addTitle))
        {
            // escape chars that would otherwise break the row / export
            char[] csvTokens = new[] { '\"', ',', '\n', '\r' };

            if (addTitle.IndexOfAny(csvTokens) >= 0)
            {
                addTitle = "\"" + addTitle.Replace("\"", "\"\"") + "\"";
            }
            sb.Append(addTitle).Append(",");
            sb.AppendLine();
        }


        // The header
        foreach (string field in fields)
        sb.Append(field).Append(",");
        sb.AppendLine();

        // The rows
        foreach (Dictionary<string, object> row in rows)
        {
            foreach (string field in fields)
                sb.Append(MakeValueCsvFriendly(row[field])).Append(",");
            sb.AppendLine();
        }

        return sb.ToString();
    }

    public void ExportToFile(string path)
    {
        File.WriteAllText(path, Export());
    }

    public byte[] ExportToBytes()
    {
        return Encoding.UTF8.GetBytes(Export());
    }
}


3

ExportToStreamを追加したので、csvは最初にハードドライブに保存する必要がありませんでした。

public Stream ExportToStream()
{
    MemoryStream stream = new MemoryStream();
    StreamWriter writer = new StreamWriter(stream);
    writer.Write(Export(true));
    writer.Flush();
    stream.Position = 0;
    return stream;
}

3

私は追加しました

public void ExportToFile(string path, DataTable tabela)
{

     DataColumnCollection colunas = tabela.Columns;

     foreach (DataRow linha in tabela.Rows)
     {

           this.AddRow();

           foreach (DataColumn coluna in colunas)

           {

               this[coluna.ColumnName] = linha[coluna];

           }

      }
      this.ExportToFile(path);

}

以前のコードは、古い.NETバージョンでは機能しません。フレームワークの3.5バージョンについては、この他のバージョンを使用します。

        public void ExportToFile(string path)
    {
        bool abort = false;
        bool exists = false;
        do
        {
            exists = File.Exists(path);
            if (!exists)
            {
                if( !Convert.ToBoolean( File.CreateText(path) ) )
                        abort = true;
            }
        } while (!exists || abort);

        if (!abort)
        {
            //File.OpenWrite(path);
            using (StreamWriter w = File.AppendText(path))
            {
                w.WriteLine("hello");
            }

        }

        //File.WriteAllText(path, Export());
    }

2

どうもありがとうございました!クラスを次のように変更しました。

  • コードにハードコーディングされているのではなく、変数区切り文字を使用する
  • すべての改行(\ n \ r \ n \ r)を MakeValueCsvFriendly

コード:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Data.SqlTypes;
using System.IO;
using System.Text;
using System.Text.RegularExpressions;

    public class CsvExport
    {

        public char delim = ';';
        /// <summary>
        /// To keep the ordered list of column names
        /// </summary>
        List<string> fields = new List<string>();

        /// <summary>
        /// The list of rows
        /// </summary>
        List<Dictionary<string, object>> rows = new List<Dictionary<string, object>>();

        /// <summary>
        /// The current row
        /// </summary>
        Dictionary<string, object> currentRow { get { return rows[rows.Count - 1]; } }

        /// <summary>
        /// Set a value on this column
        /// </summary>
        public object this[string field]
        {
            set
            {
                // Keep track of the field names, because the dictionary loses the ordering
                if (!fields.Contains(field)) fields.Add(field);
                currentRow[field] = value;
            }
        }

        /// <summary>
        /// Call this before setting any fields on a row
        /// </summary>
        public void AddRow()
        {
            rows.Add(new Dictionary<string, object>());
        }

        /// <summary>
        /// Converts a value to how it should output in a csv file
        /// If it has a comma, it needs surrounding with double quotes
        /// Eg Sydney, Australia -> "Sydney, Australia"
        /// Also if it contains any double quotes ("), then they need to be replaced with quad quotes[sic] ("")
        /// Eg "Dangerous Dan" McGrew -> """Dangerous Dan"" McGrew"
        /// </summary>
        string MakeValueCsvFriendly(object value)
        {
            if (value == null) return "";
            if (value is INullable && ((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(delim) || output.Contains("\""))
                output = '"' + output.Replace("\"", "\"\"") + '"';
            if (Regex.IsMatch(output,  @"(?:\r\n|\n|\r)"))
                output = string.Join(" ", Regex.Split(output, @"(?:\r\n|\n|\r)"));
            return output;
        }

        /// <summary>
        /// Output all rows as a CSV returning a string
        /// </summary>
        public string Export()
        {
            StringBuilder sb = new StringBuilder();

            // The header
            foreach (string field in fields)
                sb.Append(field).Append(delim);
            sb.AppendLine();

            // The rows
            foreach (Dictionary<string, object> row in rows)
            {
                foreach (string field in fields)
                    sb.Append(MakeValueCsvFriendly(row[field])).Append(delim);
                sb.AppendLine();
            }

            return sb.ToString();
        }

        /// <summary>
        /// Exports to a file
        /// </summary>
        public void ExportToFile(string path)
        {
            File.WriteAllText(path, Export());
        }

        /// <summary>
        /// Exports as raw UTF8 bytes
        /// </summary>
        public byte[] ExportToBytes()
        {
            return Encoding.UTF8.GetBytes(Export());

        }

    }


1

元のクラスに問題があります。つまり、新しい列を追加する場合、ExportメソッドでKeyNotFoundExceptionを受け取ります。例えば:

static void Main(string[] args)
{
    var export = new CsvExport();

    export.AddRow();
    export["Region"] = "New York, USA";
    export["Sales"] = 100000;
    export["Date Opened"] = new DateTime(2003, 12, 31);

    export.AddRow();
    export["Region"] = "Sydney \"in\" Australia";
    export["Sales"] = 50000;
    export["Date Opened"] = new DateTime(2005, 1, 1, 9, 30, 0);
    export["Balance"] = 3.45f;  //Exception is throwed for this new column

    export.ExportToFile("Somefile.csv");
}

これを解決し、リフレクションを使用するという@KeyboardCowboyのアイデアを使用して、同じ列を持たない行を追加できるようにコードを変更しました。匿名クラスのインスタンスを使用できます。例えば:

static void Main(string[] args)
{
    var export = new CsvExporter();

    export.AddRow(new {A = 12, B = "Empty"});
    export.AddRow(new {A = 34.5f, D = false});

    export.ExportToFile("File.csv");
}

ソースコードはCsvExporterからダウンロードできます。自由に使用および変更してください。

ここで、書き込みたいすべての行が同じクラスのものである場合は、汎用クラスCsvWriter.csを作成しました。これは、RAMの使用効率が高く、大きなファイルの書き込みに理想的です。さらに、必要なデータ型にフォーマッターを追加できます。 。使用例:

class Program
{
    static void Main(string[] args)
    {
        var writer = new CsvWriter<Person>("Persons.csv");

        writer.AddFormatter<DateTime>(d => d.ToString("MM/dd/yyyy"));

        writer.WriteHeaders();
        writer.WriteRows(GetPersons());

        writer.Flush();
        writer.Close();
    }

    private static IEnumerable<Person> GetPersons()
    {
        yield return new Person
            {
                FirstName = "Jhon", 
                LastName = "Doe", 
                Sex = 'M'
            };

        yield return new Person
            {
                FirstName = "Jhane", 
                LastName = "Doe",
                Sex = 'F',
                BirthDate = DateTime.Now
            };
        }
    }


    class Person
    {
        public string FirstName { get; set; }

        public string LastName { get; set; }

        public char Sex  { get; set; }

        public DateTime BirthDate { get; set; }
    }

0

これを行うのに必要な関数は1つだけです。ソリューションエクスプローラーにフォルダーを作成してそこにcsvファイルを保存し、そのファイルをユーザーにエクスポートするだけです。

私の場合のように、私はフォルダをダウンロードしています。まず、すべてのコンテンツをそのディレクトリにエクスポートし、次にユーザーにエクスポートします。response.endの処理には、ThreadAbortExceptionを使用しました。したがって、それは私のソリューションでは100%正規の機能です。

protected void lnkExport_OnClick(object sender, EventArgs e)
{

    string filename = strFileName = "Export.csv";

    DataTable dt = obj.GetData();  

// call the content and load it into the datatable

    strFileName = Server.MapPath("Downloads") + "\\" + strFileName;

// creating a file in the downloads folder in your solution explorer

    TextWriter tw = new StreamWriter(strFileName);

// using the built in class textwriter for writing your content in the exporting file

    string strData = "Username,Password,City";

// above line is the header for your exported file. So add headings for your coloumns in excel(.csv) file and seperate them with ","

    strData += Environment.NewLine;

// setting the environment to the new line

    foreach (DataRow dr in dt.Rows)
    {
       strData += dr["Username"].ToString() + "," + dr["Password"].ToString() + "," +      dr["City"].ToString();
       strData += Environment.NewLine;
    }

// everytime when loop execute, it adds a line into the file
    tw.Write(strData);

// writing the contents in file
    tw.Close();

// closing the file
    Response.Redirect("Downloads/" + filename);

// exporting the file to the user as a popup to save as....
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.