现在有了,NPOI2.0版本,我的资源里有。简单例子 XWPFDocument doc = new XWPFDocument(); doc.CreateParagraph();//段落 FileStream sw = File.OpenWrite("blank.docx"); doc.Write(sw); sw.Close();