.NETがExcelファイルを読み込む3つの方法の違い

8152 ワード

ASP.NETでExcelファイルを読み込む方法1:OleDBでExcelファイルを読み取る:
Excelファイルを1つのデータソースとしてデータの読み込みを行います.例は以下の通りです.
 
  
public DataSet ExcelToDS(string Path)  
{   
  string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" +"Data Source="+ Path +";"+"Extended Properties=Excel 8.0;";
   OleDbConnection conn = new OleDbConnection(strConn);   
  conn.Open();
   string strExcel = "";
   OleDbDataAdapter myCommand = null;
   DataSet ds = null;
   strExcel="select * from [sheet1$]";
   myCommand = new OleDbDataAdapter(strExcel, strConn);
   ds = new DataSet();    myCommand.Fill(ds,"table1");
   return ds;
}

Excelのテーブルであるsheet([sheet 1$])については、固定されていない場合は次の方法で得ることができます.
 
  
string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" +"Data Source="+ Path +";"+"Extended Properties=Excel 8.0;";
OleDbConnection conn = new OleDbConnection(strConn);
DataTable schemaTable = objConn.GetOleDbSchemaTable(System.Data.OleDb.OleDbSchemaGuid.Tables,null);
string tableName=schemaTable.Rows[0][2].ToString().Trim();  

また、Excelファイルへの書き込みも可能です.例は以下のとおりです.
 
  
public void DSToExcel(string Path,DataSet oldds)   {   
// Excel DataSet Excel DataSet    
string strCon = " Provider = Microsoft.Jet.OLEDB.4.0 ; Data Source ="+path1+";Extended Properties=Excel 8.0" ;
OleDbConnection myConn = new OleDbConnection(strCon) ;
string strCom="select * from [Sheet1$]";
myConn.Open ( ) ;
OleDbDataAdapter myCommand = new OleDbDataAdapter ( strCom, myConn ) ;
ystem.Data.OleDb.OleDbCommandBuilder builder=new OleDbCommandBuilder(myCommand);   
//QuotePrefix QuoteSuffix builder InsertComment 。   
builder.QuotePrefix="[";     // insert ( )
builder.QuoteSuffix="]"; // insert ( ) 
DataSet newds=new DataSet();
myCommand.Fill(newds ,"Table1") ;
for(int i=0;i{    
  // ImportRow news ,
  // ImportRow DataRow (DataRowState )。
  // ImportRow newds , Excel DataRowState!=Added
  DataRow nrow=aDataSet.Tables["Table1"].NewRow();
   for(int j=0;j   {     
    nrow[j]=oldds.Tables[0].Rows[i][j];
   }    
    newds.Tables["Table1"].Rows.Add(nrow);  
}   
myCommand.Update(newds,"Table1");
myConn.Close();
}

ASP.NETがExcelファイルを読み込む方法2:参照するcomコンポーネント:Microsoft.Office.Interop.Excel.dll Excelファイルの読み込み
まずExcelです.dllの取得、Officeインストールディレクトリの下のExcel.exeファイルCopyはDotNetのbinディレクトリの下、cmdはそのディレクトリの下、TlbImp EXCELを実行する.EXE Excel.dllはDllファイルを取得します.
プロジェクトにdllを参照するファイルを追加します.
 
  
// EXCEL    ( )
private void OpenExcel(string strFileName)  {     
object missing = System.Reflection.Missing.Value;     
Application excel = new Application();//lauch excel application
if (excel == null)    
{       
  Response.Write("alert('Can't access excel')");     
}    
else    
{         
  excel.Visible = false;
  excel.UserControl = true;          // EXCEL
    Workbook wb = excel.Application.Workbooks.Open(strFileName, missing, true, missing, missing, missing,missing, missing, missing, true, missing, missing, missing, missing, missing);          //  
    Worksheet ws = (Worksheet)wb.Worksheets.get_Item(1);           //    ( )   
   int rowsint = ws.UsedRange.Cells.Rows.Count; //          
  //int columnsint = mySheet.UsedRange.Cells.Columns.Count;//           
  //   ( )
   Range rng1 = ws.Cells.get_Range("B2", "B" + rowsint);   //item         
   Range rng2 = ws.Cells.get_Range("K2", "K" + rowsint);  //Customer         
  object[,] arryItem= (object[,])rng1.Value2;   //get range's value        
   object[,] arryCus = (object[,])rng2.Value2;             //         
   string[,] arry = new string[rowsint-1, 2];         
  for (int i = 1; i <= rowsint-1; i++)        
  {             
    //Item_Code              
   arry[i - 1, 0] =arryItem[i, 1].ToString();              //Customer_Name             
   arry[i - 1, 1] = arryCus[i, 1].ToString();       
  }      
  Response.Write(arry[0, 0] + "  /  " + arry[0, 1] + "#" + arry[rowsint - 2, 0] + "  /  " + arry[rowsint - 2, 1]);      }      
  excel.Quit(); 
 excel = null;  
  Process[] procs = Process.GetProcessesByName("excel"); 
foreach (Process pro in procs)     
{         
  pro.Kill();// ,     
}     
GC.Collect(); 
}

ASP.NETでExcelファイルを読み込む方法3:ExcelファイルをCSV(カンマ区切り)のファイルに変換し、ファイルストリームで読み込む(等価はtxtテキストファイルを読み込む).
名前空間を先に参照:
 
  
using System.Text; using System.IO;           
FileStream fs = new FileStream("d:\\Customer.csv", FileMode.Open, FileAccess.Read, FileShare.None);
StreamReader sr = new StreamReader(fs, System.Text.Encoding.GetEncoding(936));
string str = "";           
string s = Console.ReadLine();           
while (str != null)           
{   
  str = sr.ReadLine();
  string[] xu = new String[2];
  xu = str.Split(',');
  string ser = xu[0];
  string dse = xu[1];
  if (ser == s)
  { 
    Console.WriteLine(dse);break;
  }          
}  
sr.Close();

また、データベースデータをtxtファイルにインポートすることもできます.例は次のとおりです.
 
  
//txt  
string fn = DateTime.Now.ToString("yyyyMMddHHmmss") + "-" + "PO014" + ".txt";   OleDbConnection con = new OleDbConnection(conStr);   con.Open();  string sql = "select  ITEM,REQD_DATE,QTY,PUR_FLG,PO_NUM from TSD_PO014";          OleDbCommand mycom = new OleDbCommand("select * from TSD_PO014", mycon); 
//OleDbDataReader myreader = mycom.ExecuteReader();  // Reader
DataSet ds = new DataSet(); 
OleDbDataAdapter oda = new OleDbDataAdapter(sql, con);
oda.Fill(ds, "PO014"); 
DataTable dt = ds.Tables[0]; 
FileStream fs = new FileStream(Server.MapPath("download/" + fn), FileMode.Create, FileAccess.ReadWrite); 
StreamWriter strmWriter = new StreamWriter(fs);    //    
// .txt  
//for (int i = 0; i //{ 
//    strmWriter.Write(dt.Columns[i].ColumnName + "  ");
//} 
foreach (DataRow dr in dt.Rows) 
{    
  string str0, str1, str2, str3;     
  string str = "|";  // "|"    
  str0 = dr[0].ToString();     
  str1 = dr[1].ToString();   
  str2 = dr[2].ToString(); 
  str3 = dr[3].ToString();  
   str4 = dr[4].ToString().Trim();  
   strmWriter.Write(str0);  
   strmWriter.Write(str); 
   strmWriter.Write(str1);  
   strmWriter.Write(str); 
   strmWriter.Write(str2);  
   strmWriter.Write(str);  
   strmWriter.Write(str3); 
   strmWriter.WriteLine();  //  

strmWriter.Flush();
strmWriter.Close();
if (con.State == ConnectionState.Open) 
{    
  con.Close();
}

ASP.NETがExcelファイルを読み込む方法を紹介します.ASP.を知ってほしいです.NETがExcelファイルを読み込むのに役立ちます.