C # EXCEL-create an EXCEL file

Source: Internet
Author: User

Add reference first

Right-click a project -- add reference -- COM -- Microsoft Excel 12.0 Object Library

Here, 12.0 is a 2007 database, that is, the excel document in xlsx format can be operated.

[Csharp]
Using MSExcel = Microsoft. Office. Interop. Excel; // This sentence is actually for later convenience, so you can save a lot of words
 
Using System. IO;
 
Using System. Reflection;
 
Class Program
 
{
 
Static void Main (string [] args (
 
{
 
String path; // file path
 
MSExcel. Application excelApp; // Excel Application
 
MSExcel. WorkBook excelDoc; // Excel document
 
Path = @ "c:/test.xlsx ";
 
ExcelApp = new MSExcel. ApplicationClass ();
 
If (File. Exists (path)
 
{
 
File. Delete (path );
 
}
 
Object nothing = Missing. Value;
 
ExcelDoc = excelApp. Workbooks. Add (nothing );
 
Object format = MSExcel. XlFileFormat. xlWorkbookDefault;
 
ExcelDoc. SaveAs (path, nothing,
 
MSExcel. XlSaveAsAccessMode. xlExclusive, nothing, nothing );
 
ExcelDoc. Close (nothing, nothing, nothing );
 
ExcelApp. Quit ();
 
}
 
}
Because I learned other people's code, this article was copied directly. The original code was a bit wrong. After I changed it, there was no problem.


From icyfox_bupt

Related Article

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.