簡體   English   中英

如何在Excel工作表中添加列標題?

[英]How to add column header to excel sheet?

private void btn_gnrt_files_Click(object sender, EventArgs e)
{ 

    if (textBox1.Text != "" && textBox2.Text != "")
    {
        //reading text file
        FileInfo theSourceFile = new FileInfo(@"" + textBox1.Text);   
        StreamReader reader = theSourceFile.OpenText();
        String filename = "";
        String text = "";
        do
        {
            text = reader.ReadLine();
            if (text != null)
            {
                //MessageBox.Show(""+state);
                String[] fname = text.Split('|'); //writiting file
                if (state == true)
                { 
                    filename = fname[1];
                    filename.TrimStart();
                    //MessageBox.Show(filename);
                    Excel.Application excel = new Excel.Application();
                    excel.Visible = true;
                    //true is append parameter
                    using (System.IO.StreamWriter writer = new System.IO.StreamWriter(@"" + textBox2.Text + @"\" + filename.TrimStart() + ".csv", true))
                    writer.WriteLine(text.Replace("|", ","));

我通過此代碼獲取具有數據的excel文件。 但我不能將列標題放在Excel工作表中。 請告訴我如何添加這些標題

<<reg no,br no,pr no,curency>>
                Microsoft.Office.Interop.Excel.Workbook xlWorkBook;
                Microsoft.Office.Interop.Excel.Worksheet xlWorkSheet;
                Microsoft.Office.Interop.Excel.Application xlApp = new Microsoft.Office.Interop.Excel.Application();

                if (xlApp == null)
                {
                    System.Windows.MessageBox.Show("Excel is not properly installed!!");
                    return;
                }
                xlWorkBook = xlApp.Workbooks.Add();
                xlWorkSheet = (Microsoft.Office.Interop.Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1);


                xlWorkSheet.Cells[1, 1] = "reg no";
                xlWorkSheet.Cells[1, 2] = "br no"
                xlWorkSheet.Cells[1, 3] = "pr no"
                xlWorkSheet.Cells[1, 4] = "curency";

然后做你的事...

列標題只是Excel(或CSV)中的常規單元格,因此將它們添加為第一行。

在開始循環以寫入數據線之前,請添加該標題行。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM