一、概述:Aspose.Words是一个商业.NET类库,可以使得应用程序处理大量的文件任务。 Aspose.Words支持Doc,Docx,RTF,HTML,OpenDocument,PDF,XPS,EPUB和其他格式。使用Aspose.Words可以在不使用Microsoft.Word的情况下生成、修改、转换和打印文档。 二、功能简介: 1、Aspose.Words具有高质量的文件格式转换功能,可以和Doc,OOXL,RTF,TXT等格式互相转换。 2、通过丰富的API以编程方式访问所有的文档元素和格式,允许创建,修改,提取,复制,分割,加入,和替换文件内容。 3、可以在服务器端转换整个文档或者页面为PDF,XPS,SWF格式,同样可以转换文档页面为图像格式,或者.NET Graphics对象,这些功能和Microsoft.Word是一样的。 4、Aspose.Words可以在没有安装Microsoft Office的机器上工作。 三、实例演示:

		public static void word2pdf(String Address) {
				getLicense();
				try {
					File file = new File("D:\\red_ant_file\\20180919\\20180919.pdf"); // 新建一个空白pdf文档
					FileOutputStream os = new FileOutputStream(file);
					com.aspose.words.Document doc = new com.aspose.words.Document(Address); // Address是将要被转化的word文档
					for (Section sect : doc.getSections()) {  
						removeWatermarkFromHeader(sect, HeaderFooterType.HEADER_PRIMARY);  
						removeWatermarkFromHeader(sect, HeaderFooterType.HEADER_FIRST);  
						removeWatermarkFromHeader(sect, HeaderFooterType.HEADER_EVEN);  
					} 
					doc.save(os, SaveFormat.PDF); // 全面支持DOC, DOCX, OOXML, RTF HTML, OpenDocument, PDF, EPUB, XPS, SWF 相互转换
					os.close();
				} catch (Exception e) {
					e.printStackTrace();
				}
			}
		/**word转pdf
			 */
			public static boolean getLicense() {
				boolean result = false;
				try {
					// wordlicense.xml应放在..\WebContent\WEB-INF\classes路径下
					InputStream is = Test.class.getClassLoader().getResourceAsStream("wordlicense.xml"); 
					com.aspose.words.License aposeLic = new com.aspose.words.License();
					aposeLic.setLicense(is);
					result = true;
				} catch (Exception e) {
					e.printStackTrace();
				}
				return result;
			}

调用:

	String aposeword_Source_path = "D:\\red_ant_file\\20180919\\Extjs4.0_教程.doc";
	AllServiceIsHere.word2pdf(aposeword_Source_path);

运行之后: