-
大小: 10.79MB文件类型: .rar金币: 2下载: 1 次发布日期: 2023-11-18
- 语言: Java
- 标签: words aspose.words aspose pdf转换
资源简介
破解版的word文档转换生成工具,无水印版破解,亲测可用
代码片段和文件信息
package com.shzqoa.util;
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import org.aspectj.weaver.ast.Test;
import com.aspose.words.Document;
import com.aspose.words.License;
import com.aspose.words.SaveFormat;
/**
* @author Administrator
* @version $Id$
* @since
* @see
*/
public class WordPdfUtil {
//此插件不需要安装office服务但是此插件加密,如不注册会有水印
// public static void main(String[] args) {
// //doc2pdf(“C:/Users/lss/Desktop/test.doc“);
// doc2pdf(“F:\\doc\\a.doc““F:\\doc\\a.pdf“);
// }
public static boolean getLicense() {
boolean result = false;
try {
InputStream is = Test.class.getClassLoader().getResourceAsStream(“license.xml“); // license.xml应放在..\WebRoot\WEB-INF\classes路径下
License aposeLic = new License();
aposeLic.setLicense(is);
result = true;
} catch (Exception e) {
e.printStackTrace();
}
return result;
}
public static void doc2pdf(String inPath String outPath) {
// if (!getLicense()) { // 验证License 若不验证则转化出的pdf文档会有水印产生
// return;
// }
try {
long old = System.currentTimeMillis();
File file = new File(outPath); // 新建一个空白pdf文档
FileOutputStream os = new FileOutputStream(file);
Document doc = new Document(inPath); // Address是将要被转化的word文档
doc.save(os SaveFormat.PDF);// 全面支持DOC DOCX OOxml RTF HTML OpenDocument PDF
// EPUB XPS SWF 相互转换
long now = System.currentTimeMillis();
System.out.println(outPath+“生成共耗时:“ + ((now - old) / 1000.0) + “秒“); // 转化用时
} catch (Exception e) {
e.printStackTrace();
}
}
public static void savedocx(String inPath String outPath) {
if (!getLicense()) { // 验证License 若不验证则转化出的pdf文档会有水印产生
return;
}
try {
long old = System.currentTimeMillis();
File file = new File(outPath); // 新建一个空白pdf文档
FileOutputStream os = new FileOutputStream(file);
Document doc = new Document(inPath); // Address是将要被转化的word文档
doc.save(os SaveFormat.DOCX);// 全面支持DOC DOCX OOxml RTF HTML OpenDocument PDF
// EPUB XPS SWF 相互转换
long now = System.currentTimeMillis();
System.out.println(outPath+“生成共耗时:“ + ((now - old) / 1000.0) + “秒“); // 转化用时
} catch (Exception e) {
e.printStackTrace();
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2033490 2018-08-15 13:55 破解可用\aspectjweaver-1.9.1.jar
文件 10269481 2018-08-15 15:59 破解可用\aspose-words-15.8.0-jdk16.jar
文件 586 2018-08-15 16:12 破解可用\license.xm
文件 2918 2018-08-15 16:09 破解可用\WordPdfUtil.java
目录 0 2018-08-16 09:12 破解可用
----------- --------- ---------- ----- ----
12306475 5
相关资源
- aspose.words 16.4 完美破解版
-
java版aspose-words相关jar和license.xm
l - aspose words for java 16.5.0 最新完美破解版
- aspose-cell for java 18.9破解版
- aspose-words的license和jar
- Aspose word for java-14.11最新完美破解版,
- aspose words for java 18.9 最新完美破解版
- aspose-cells-19.5.jdk破解版19年5月最新版
- aspose cells for java 8.9.2 最新完美破解版
- Aspose word for java 15.8.0最新完美破解版
- Aspose word for java-14.11最新完美破解版,
- aspose cells for java 8.6.2 最新完美破解版
- Aspose-cells-for java-8.5.2-最新完美破解版
- aspose cells for java 18.9 最新完美破解版
- aspose-words-15.8.0-jdk16.jar
- aspose words for java 16.6.0 最新完美破解版
- aspose-words-16.4.0破解版,保证无限制、
- aspose.words for java文档转换工具类
- aspose-words-18.8-jdk16-crack.zip
- java利用Aspose.cells.jar将本地excel文档转
- aspose-words破解版 jar包
- Aspose.Cell for Java 8.3.1 完整破解版本
- aspose-cad-19.5-jdk19.03pojie.jar 无水印
- aspose-cad.jar
- aspose slides for java 15.9.0 最新完美破解
- aspose-words-20.5-java.rar
- Aspose技术转换PDF
- aspose.pdfforjava18.9完美破解版无水印无
- JAVA读写word
- aspose-html-17.8.jar
评论
共有 条评论