91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#中如何實現EXCEL轉換成TXT文檔

發布時間:2021-11-03 18:03:10 來源:億速云 閱讀:185 作者:小新 欄目:編程語言

這篇文章主要為大家展示了“C#中如何實現EXCEL轉換成TXT文檔”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“C#中如何實現EXCEL轉換成TXT文檔”這篇文章吧。

C#數據轉換前excel中的數據格式如下:

設備名稱 規格型號 設備編號  使用部門 固定資產編號

電腦1 IBM5660 10001 管理部 100010001

電腦2 IBM5661 10002 研發部 100010002

電腦3 IBM5662 10003 管理部 100010003

C#數據轉換到TXT文檔的格式:

"檢測設備資產標簽","設備名稱","電腦1","規格型號","IBM5660","設備編號","10001","使用部門","管理部","固定資產編號","100010001"

"檢測設備資產標簽","設備名稱","電腦2","規格型號","IBM5661","設備編號","10002","使用部門","研發部","固定資產編號","100010002"

"檢測設備資產標簽","設備名稱","電腦3","規格型號","IBM5662","設備編號","10003","使用部門","管理部","固定資產編號","100010003"
end


頁面設計代碼:

namespace ExcelToTxt  {      partial class Form1      {          /// <summary>         /// 必需的設計器變量。          /// </summary>         private System.ComponentModel.IContainer components = null;           /// <summary>         /// 清理所有正在使用的資源。          /// </summary>         /// <param name="disposing">如果應釋放托管資源,為 true;否則為 false。</param>         protected override void Dispose(bool disposing)          {              if (disposing && (components != null))              {                  components.Dispose();              }              base.Dispose(disposing);          }           #region Windows 窗體設計器生成的代碼           /// <summary>         /// 設計器支持所需的方法 - 不要          /// 使用代碼編輯器修改此方法的內容。          /// </summary>         private void InitializeComponent()          {              this.dgvShow = new System.Windows.Forms.DataGridView();              this.btnSelect = new System.Windows.Forms.Button();              this.btnChange = new System.Windows.Forms.Button();              ((System.ComponentModel.ISupportInitialize)(this.dgvShow)).BeginInit();              this.SuspendLayout();              //               // dgvShow              //               this.dgvShow.AllowUserToAddRows = false;              this.dgvShow.AllowUserToDeleteRows = false;              this.dgvShow.AllowUserToResizeRows = false;              this.dgvShow.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;              this.dgvShow.Dock = System.Windows.Forms.DockStyle.Top;              this.dgvShow.Location = new System.Drawing.Point(0, 0);              this.dgvShow.Name = "dgvShow";              this.dgvShow.RowTemplate.Height = 23;              this.dgvShow.Size = new System.Drawing.Size(885, 600);              this.dgvShow.TabIndex = 0;              //               // btnSelect              //               this.btnSelect.Location = new System.Drawing.Point(202, 611);              this.btnSelect.Name = "btnSelect";              this.btnSelect.Size = new System.Drawing.Size(148, 23);              this.btnSelect.TabIndex = 1;              this.btnSelect.Text = "選擇excel文件";              this.btnSelect.UseVisualStyleBackColor = true;              this.btnSelect.Click += new System.EventHandler(this.btnSelect_Click);              //               // btnChange              //               this.btnChange.Location = new System.Drawing.Point(403, 611);              this.btnChange.Name = "btnChange";              this.btnChange.Size = new System.Drawing.Size(152, 23);              this.btnChange.TabIndex = 2;              this.btnChange.Text = "轉換為txt文檔";              this.btnChange.UseVisualStyleBackColor = true;              this.btnChange.Click += new System.EventHandler(this.btnChange_Click);              //               // Form1              //               this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);              this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;              this.ClientSize = new System.Drawing.Size(885, 646);              this.Controls.Add(this.btnChange);              this.Controls.Add(this.btnSelect);              this.Controls.Add(this.dgvShow);              this.Name = "Form1";              this.Text = "文件轉換";              ((System.ComponentModel.ISupportInitialize)(this.dgvShow)).EndInit();              this.ResumeLayout(false);           }           #endregion           private System.Windows.Forms.DataGridView dgvShow;          private System.Windows.Forms.Button btnSelect;          private System.Windows.Forms.Button btnChange;      }  }

C#數據轉換實現代碼:

using System;  using System.Collections.Generic;  using System.ComponentModel;  using System.Data;  using System.Data.OleDb;  using System.Drawing;  using System.Text;  using System.Windows.Forms;  using System.IO;    namespace ExcelToTxt  {      public partial class Form1 : Form      {          private DataTable dt; //存儲EXCLE中的數據           public Form1()          {              InitializeComponent();              this.btnChange.Enabled = false;//初始化設置控件為不可用          }            /// <summary>          /// 該方法打開一個Excel文件          /// </summary>          /// <param name="sender"></param>          /// <param name="e"></param>          private void btnSelect_Click(object sender, EventArgs e)          {              string excelFilePath = ""; //存儲打開的文件的路徑                            OpenFileDialog selectFile = new OpenFileDialog();                            //選擇打開的文件設置              selectFile.Filter = "Excel(*.xls)|*.xls";              selectFile.FilterIndex = 1;              selectFile.DefaultExt = "xls";              selectFile.AddExtension = true;              selectFile.RestoreDirectory = true;              selectFile.Multiselect = false;                            //選擇文件              if (selectFile.ShowDialog() == DialogResult.OK)              {                  excelFilePath = selectFile.FileName;//獲取選擇的文件路徑              }              else             {                  return;              }               //得到控件的數據源              dt = GetExcelData(excelFilePath);               //在顯示控件中顯示數據              ShowDataGridView();               //設置轉換格式的控件可用              this.btnChange.Enabled = true;          }            /// <summary>          ///該方法將選擇的EXCEL文件轉換成TXT文檔           /// </summary>          /// <param name="sender"></param>          /// <param name="e"></param>          private void btnChange_Click(object sender, EventArgs e)          {              string txtFilePath = "";//存儲選擇的TXT文檔的文件名              SaveFileDialog saveTxtFile = new SaveFileDialog();               //選擇保存的文件設置              saveTxtFile.Filter = "Text(.txt)|*.txt";              saveTxtFile.FilterIndex = 1;              saveTxtFile.DefaultExt = "txt";              saveTxtFile.AddExtension = true;              saveTxtFile.RestoreDirectory = true;              saveTxtFile.OverwritePrompt = true;               //選擇創建文件的文件夾              if (saveTxtFile.ShowDialog() == DialogResult.OK)              {                  txtFilePath = saveTxtFile.FileName; //獲取選擇的文件路徑              }              else             {                  return;              }               //將DataTable中的文件寫入到txt文檔中              Cursor.Current = Cursors.WaitCursor; //設置鼠標狀態              int dtcols = dt.Columns.Count;              StringBuilder sbtxtdata = new StringBuilder(); ;  //臨時存儲從dt中讀出的每一條數據                //先創建一個新的TXT文檔              FileStream fsTxtFile = new FileStream(txtFilePath, FileMode.CreateNew, FileAccess.Write);              StreamWriter swTxtFile = new StreamWriter(fsTxtFile, Encoding.GetEncoding("gb2312") );               if (dtcols > 3)              {                  string[] tempstr = new string[11];                                    //設置固定的值                  tempstr[0] = "\"" + "檢測設備資產標簽" + "\"" + ",";                  tempstr[1] = "\"" + "設備名稱" + "\"" + ",";                  tempstr[3] = "\"" + "規格型號" + "\"" + ",";                  tempstr[5] = "\"" + "設備編號" + "\"" + ",";                  tempstr[7] = "\"" + "使用部門" + "\"" + ",";                  tempstr[9] = "\"" + "固定資產編號" + "\"" + ",";                                     //標簽2的格式寫入Txt文檔                  for(int rows = 0; rows < dt.Rows.Count; rows++)                  {                      for (int cols = 0; cols < dt.Columns.Count; cols++)                      {                          int tempindex = 2*(cols+1);                          tempstr[tempindex] = "\"" + dt.Rows[rows][cols].ToString() + "\"";                      }                       tempstr[2] = tempstr[2] + ",";                      tempstr[4] = tempstr[4] + ",";                      tempstr[6] = tempstr[6] + ",";                      tempstr[8] = tempstr[8] + ",";                      tempstr[10] = tempstr[10] + "\r\n";                       //將本行數據寫入緩沖區                      foreach (string str in tempstr)                      {                          sbtxtdata.Append(str);                      }                      swTxtFile.Write(sbtxtdata);                                            //清空本行中的數據                      sbtxtdata.Remove(0, sbtxtdata.Length);                       //將數組中新添加的數據清空                      for (int i = 0; i < dt.Columns.Count; i++)                      {                          int tempindex = 2*(i+1);                          tempstr[tempindex] = "";                      }                  }              }              else             {                  string[] tempstr = new string[5];                  //標簽0或1的格式寫入Txt文檔                  for (int rows = 0; rows < dt.Rows.Count; rows++)                  {                      for (int cols = 0; cols < dt.Columns.Count; cols++)                      {                          string temp = "";//臨時存儲當前時間                           if (cols == 0)                          {                              tempstr[0] = "\"" + dt.Rows[rows][cols] + "\"" + ",";                          }                          else if (cols == 1)                          {                              temp = dt.Rows[rows][cols].ToString();                              tempstr[1] = "\"" + temp.Substring(0, 4) + "\"" + ","; //截取年                              tempstr[2] = "\"" + temp.Substring(4, 2) + "\"" + ","; //截取月                              tempstr[3] = "\"" + temp.Substring(6, 2) + "\"" + ","; //截取日                          }                          else if (cols == 2)                          {                              tempstr[4] = "\"" + dt.Rows[rows][cols] + "\"" + "\r\n";                          }                      }                       //將本行數據寫入緩沖區                      foreach (string str in tempstr)                      {                          sbtxtdata.Append(str);                      }                      swTxtFile.Write(sbtxtdata);                       //清空本行中的數據                      sbtxtdata.Remove(0, sbtxtdata.Length);                       //將數組中新添加的數據清空                      for (int i = 0; i < dt.Columns.Count; i++)                      {                          tempstr[i] = "";                      }                  }              }               //將數據寫入文檔              swTxtFile.Write("end");              swTxtFile.Flush();              swTxtFile.Close();              fsTxtFile.Close();               //重新設置鼠標格式              Cursor.Current = Cursors.Default;              MessageBox.Show("文件轉換成功!", "提示",                      MessageBoxButtons.OK,  MessageBoxIcon.Information);          }            /// <summary>          /// 獲取Excel文件中的數據          /// </summary>          /// <param name="path">Excel文件的路徑</param>          /// <returns>DataTable:將Excel文件的數據加載到DataTable中</returns>          private DataTable GetExcelData(string path)          {              //連接字符串確定              string excelstr = "Provider = Microsoft.Jet.OLEDB.4.0;" + "Data Source= " + path + " ;"                           + " Extended Properties = Excel 8.0;";                            OleDbConnection excelConn = new OleDbConnection(excelstr);               //打開數據源連接              try             {                  if (excelConn.State == ConnectionState.Closed)                  {                      excelConn.Open();                  }              }              catch (Exception ex)              {                  MessageBox.Show("打開數據源連接失敗!", "錯誤",                           MessageBoxButtons.OK, MessageBoxIcon.Error);                  Application.Exit();              }              finally             {                  if(excelConn.State == ConnectionState.Open)                  excelConn.Close();              }               //設置查詢命令              OleDbDataAdapter myCommand = new OleDbDataAdapter("SELECT * FROM [Sheet1$]", excelConn);              DataSet ds = new DataSet();                            //執行該查詢EXCEL表的命令              try             {                  myCommand.Fill(ds, "excelTable");              }              catch (Exception ex)              {                  MessageBox.Show("該Excel文件的工作表的名字不是[Sheet1$]!", "錯誤",                                         MessageBoxButtons.OK, MessageBoxIcon.Error);                  Application.Exit();              }              finally             {                  if (excelConn.State == ConnectionState.Closed)                  {                      excelConn.Close();                  }              }               //判斷DataTable中是否有數據              if (ds.Tables["excelTable"].Rows.Count > 0)              {                  return ds.Tables["excelTable"];              }              else             {                  MessageBox.Show("沒有讀到Excel表中的數據!", "錯誤",                                           MessageBoxButtons.OK, MessageBoxIcon.Error);                  return null;              }          }            /// <summary>          /// 將選擇的excel表中的數據現在DataGridView中          /// </summary>          private void ShowDataGridView()          {              //設置顯示控件的樣式              this.dgvShow.DefaultCellStyle.BackColor = Color.Beige;              this.dgvShow.DefaultCellStyle.Font = new Font("Tahoma", 12);               DataGridViewCellStyle highlightCellStyle = new DataGridViewCellStyle();              highlightCellStyle.BackColor = Color.Red;               DataGridViewCellStyle currencyCellStyle = new DataGridViewCellStyle();              currencyCellStyle.Format = "C";              currencyCellStyle.ForeColor = Color.Green;               //設置顯示控件的數據源              dgvShow.DataSource = dt;          }                 }  }

以上是“C#中如何實現EXCEL轉換成TXT文檔”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

垣曲县| 乳源| 寿阳县| 尼木县| 天峻县| 镇赉县| 田东县| 邹平县| 宜黄县| 阿鲁科尔沁旗| 荣成市| 锡林郭勒盟| 灵山县| 永济市| 陇西县| 磐安县| 黔南| 张家港市| 临夏市| 沈阳市| 兴宁市| 屏边| 尚义县| 鹰潭市| 饶平县| 黄梅县| 阆中市| 田林县| 林州市| 修武县| 永春县| 辽阳市| 宜君县| 大新县| 吉水县| 沙河市| 安图县| 呼伦贝尔市| 贞丰县| 金湖县| 西安市|