程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> 一個讀寫csv文件的C#類

一個讀寫csv文件的C#類

編輯:C#入門知識

一個讀寫csv文件的C#類。本站提示廣大學習愛好者:(一個讀寫csv文件的C#類)文章只能為提供參考,不一定能成為您想要的結果。以下是一個讀寫csv文件的C#類正文


本文實例為大家分享了一個讀寫csv文件的C#類,供大家參考,具體內容如下

using System;
using System.Collections.Generic;
using System.IO;
using System.Text;

namespace CSVDemo
{
  /// <summary>
  /// CSVUtil is a helper class handling csv files.
  /// </summary>
  public class CSVUtil
  {
    private CSVUtil()
    {
    }
    //write a new file, existed file will be overwritten
    public static void WriteCSV(string filePathName,List<String[]>ls)
    {
      WriteCSV(filePathName,false,ls);
    }
    //write a file, existed file will be overwritten if append = false
    public static void WriteCSV(string filePathName,bool append, List<String[]> ls)
    {
      StreamWriter fileWriter=new StreamWriter(filePathName,append,Encoding.Default);
      foreach(String[] strArr in ls)
      {
        fileWriter.WriteLine(String.Join (“,",strArr) );
      }
      fileWriter.Flush();
      fileWriter.Close();
      
    }
    public static List<String[]> ReadCSV(string filePathName)
    {
      List<String[]> ls = new List<String[]>();
      StreamReader fileReader=new  StreamReader(filePathName); 
      string strLine="";
      while (strLine != null)
      {
        strLine = fileReader.ReadLine();
        if (strLine != null && strLine.Length>0)
        {
          ls.Add(strLine.Split(','));
          //Debug.WriteLine(strLine);
        }
      } 
      fileReader.Close();
      return ls;
    }
    
  }
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved