WPS 操作Word 替代Office的功能
private void RunWps_Click(object sender, EventArgs e) {
object myMissing = System.Reflection.Missing.Value; WPS.Application WpsApp = new WPS.ApplicationClass(); WpsApp.Visible = true; WpsApp.WindowState = WPS.WpsWindowState.wpsWindowStateMaximize; WPS.Document WpsDoc = WpsApp.Documents.Add(ref myMissing, false, 1, true); WpsDoc.Content.Text = "Hello World!"; WPS.Range myRange = WpsDoc.Range(0, 0); WpsDoc.Paragraphs.Add(myRange); WpsDoc.Range(0,0).Select(); WpsApp.Selection.Text = "歡迎你學習C#調用WPS"; }
C#調用WPS ET 轉換pdf
先安裝WPS
然後添加引用安裝目錄下的etapp.dll
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Diagnostics; using System.IO; using System.Collections; using ET; namespace ExcelToPdf {public partial class Form1 : Form{int ifsucess = 0;int iffail = 0;int allcount = 0;int num = 0;public Form1(){InitializeComponent();}
public void ConvertExcelToPDF(string xlspath,string pdfpath){try{object type = System.Reflection.Missing.Value;ET.ApplicationClass application = null;ET.workbook book = null;try{application = new ET.ApplicationClass();book = (ET.workbook)application.Workbooks.Open(xlspath, type, type, type, type, type, type, type, type, type, type, type, type);book.ExportPdf(pdfpath, "", "");//this.GetFilePath(path)是獲取文件路徑+文件名(不含後綴)}catch(Exception ex){MessageBox.Show(ex.Message);}finally{if (book != null){book.Close(true, type, type);book = null;}if (application != null){application.Quit();application = null;}GC.Collect();GC.WaitForPendingFinalizers();GC.Collect();GC.WaitForPendingFinalizers();}}catch (Exception ex){MessageBox.Show(ex.Message);}}
private void button1_Click(object sender, EventArgs e){ConvertExcelToPDF("c:\\test.xls","c:\\test.pdf");}
}
}
C#利用WPS生成Word文檔:
- 首先服務器必須安裝WPS Office
- 添加引用 -> COM -> Kingsoft WPS 2.0 Object Library
- 在.cs文件中添加 using KSO;和using WPS;
- 生成一個簡單一個doc文件:
WPS 操作Word 替代Office的功能