Npoi Export excel--Lite version

Source: Internet
Author: User

You are welcome to spit on the water,

Today checked a day npoi of information, found on the internet are too big on, I summed up a version

Not much to say, directly on the code

 Public voidExporttoexceltwo (System.Data.DataTable DT,stringColtitle,stringFilePath) {Hssfworkbook WorkBook=NewHssfworkbook (); Hssfsheet sheet= (Hssfsheet) workbook.createsheet ("Sheet1"); Hssfrow Row1= (hssfrow) sheet. CreateRow (0); string[] titles = Coltitle.split (',');  for(inti =0; I < titles. Length; i++) {Hssfcell cell=(Hssfcell) row1.                Createcell (i, celltype.string); Cell.            Setcellvalue (Titles[i]); }             for(intj =0; J < dt. Rows.Count; J + +) {hssfrow rows= (hssfrow) sheet. CreateRow (j +1);  for(intK =0; K < dt. Columns.count; k++) {Hssfcell cells=(Hssfcell) rows.                    Createcell (k); Cells. Setcellvalue (dt. ROWS[J][K].                ToString ()); }            }            using(FileStream fs =NewFileStream (FilePath, FileMode.OpenOrCreate))            {workbook.write (FS); } GC.        Collect (); }
View Code

Npoi Export excel--Lite version

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.