- using System;
- using System.Data;
- using System.Text;
- using System.Windows.Forms;
- using Microsoft.Office.Interop.Excel;
- using System.Data.OleDb;
-
- namespace WindowsApplication5
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
-
-
-
-
-
-
-
- public void TransferData(string excelFile, string sheetName, string sqlplusString)
- {
- string strTempDir = System.IO.Path.GetDirectoryName(excelFile);
- string strFileName = System.IO.Path.GetFileNameWithoutExtension(excelFile);
- string strCsvPath = strTempDir +"\\"+strFileName + ".csv";
- string strCtlPath = strTempDir + "\\" + strFileName + ".Ctl";
- string strSqlPath = strTempDir + "\\" + strFileName + ".Sql";
- if (System.IO.File.Exists(strCsvPath))
- System.IO.File.Delete(strCsvPath);
-
-
-
- Microsoft.Office.Interop.Excel.Application ObjExcel = new Microsoft.Office.Interop.Excel.Application();
-
- Microsoft.Office.Interop.Excel.Workbook ObjWorkBook;
-
- Microsoft.Office.Interop.Excel.Worksheet ObjWorkSheet = null;
-
- ObjWorkBook = ObjExcel.Workbooks.Open(excelFile, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);
-
- foreach (Microsoft.Office.Interop.Excel.Worksheet sheet in ObjWorkBook.Sheets)
- {
- if (sheet.Name.ToLower() == sheetName.ToLower())
- {
- ObjWorkSheet = sheet;
- break;
- }
- }
- if (ObjWorkSheet == null) throw new Exception(string.Format("{0} not found!!", sheetName));
-
-
-
- ObjWorkSheet.SaveAs(strCsvPath, Microsoft.Office.Interop.Excel.XlFileFormat.xlCSV, Type.Missing, Type.Missing, false, false, false, Type.Missing, Type.Missing, false);
- ObjWorkBook.Close(false, Type.Missing, Type.Missing);
- ObjExcel.Quit();
-
-
- System.IO.StreamReader reader = new System.IO.StreamReader(strCsvPath,Encoding.GetEncoding("gb2312"));
- string strAll = reader.ReadToEnd();
- reader.Close();
- string strData = strAll.Substring(strAll.IndexOf("\r\n") + 2).Replace(",\r\n",",Null");
-
- byte[] bytes = System.Text.Encoding.Default.GetBytes(strData);
- System.IO.Stream ms = System.IO.File.Create(strCsvPath);
- ms.Write(bytes, 0, bytes.Length);
- ms.Close();
-
-
-
- string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + excelFile + ";" + "Extended Properties=Excel 8.0;";
- OleDbConnection conn = new OleDbConnection(strConn);
- conn.Open();
- System.Data.DataTable table = conn.GetOleDbSchemaTable(System.Data.OleDb.OleDbSchemaGuid.Columns,
- new object[] { null, null, sheetName+"$", null });
-
-
-
- string strControl = "load data\r\ninfile '{0}' \r\nappend into table {1}\r\n"+
- "FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '\"'\r\n(";
- strControl = string.Format(strControl, strCsvPath,sheetName);
- foreach (System.Data.DataRow drowColumns in table.Select("1=1", "Ordinal_Position"))
- {
- strControl += drowColumns["Column_Name"].ToString() + ",";
- }
-
- strControl = strControl.Substring(0, strControl.Length - 1) + ")";
- bytes=System.Text.Encoding.Default.GetBytes(strControl);
- ms= System.IO.File.Create(strCtlPath);
-
- ms.Write(bytes, 0, bytes.Length);
- ms.Close();
-
-
- string strSql = @"drop table {0};
- create table {0}
- (";
- strSql = string.Format(strSql, sheetName);
- foreach (System.Data.DataRow drowColumns in table.Select("1=1", "Ordinal_Position"))
- {
- strSql += drowColumns["Column_Name"].ToString() + " varchar2(255),";
- }
- strSql = strSql.Substring(0, strSql.Length - 1) + ");\r\nexit;";
- bytes = System.Text.Encoding.Default.GetBytes(strSql);
- ms = System.IO.File.Create(strSqlPath);
-
- ms.Write(bytes, 0, bytes.Length);
- ms.Close();
-
-
-
- System.Diagnostics.Process p = new System.Diagnostics.Process();
- p.StartInfo = new System.Diagnostics.ProcessStartInfo();
- p.StartInfo.FileName = "sqlplus";
- p.StartInfo.Arguments = string.Format("{0} @{1}", sqlplusString, strSqlPath);
- p.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
- p.StartInfo.UseShellExecute = false;
- p.StartInfo.CreateNoWindow = true;
- p.Start();
- p.WaitForExit();
-
-
- p = new System.Diagnostics.Process();
- p.StartInfo = new System.Diagnostics.ProcessStartInfo();
- p.StartInfo.FileName = "sqlldr";
- p.StartInfo.Arguments = string.Format("{0} {1}", sqlplusString, strCtlPath);
- p.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
- p.StartInfo.RedirectStandardOutput = true;
- p.StartInfo.UseShellExecute = false;
- p.StartInfo.CreateNoWindow = true;
- p.Start();
- System.IO.StreamReader r = p.StandardOutput;
- string line = r.ReadLine();
- textBox3.Text += line + "\r\n";
- while (!r.EndOfStream)
- {
- line = r.ReadLine();
- textBox3.Text += line + "\r\n";
- textBox3.Update();
- }
- p.WaitForExit();
-
-
- }
-
- private void button1_Click(object sender, EventArgs e)
- {
- TransferData(@"D:\test.xls", "Sheet1", "username/password@servicename");
- }
-
- }
- }
posted @
2010-08-21 16:10
你妹的sb
阅读(
1626)
评论()
编辑
收藏
举报