亲宝软件园·资讯

展开

C#读写csv文件 一个读写csv文件的C#类

DODONG 人气:0
想了解一个读写csv文件的C#类的相关内容吗,DODONG在本文为您仔细讲解C#读写csv文件的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:C#读写csv文件,读写csv文件C#类,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;
  }
  
 }
}

加载全部内容

相关教程
猜你喜欢
用户评论