java ppt转html_word,ppt,excel转pdf,pdf转html工具类搭建

我看到很多需求要求word,excel,ppt,pptx转pdf等工具类。还有就是pdf转图片转html这里介绍一个这个工具类。

引入pom.xml

com.aspose

aspose-pdf

11.0.0

com.aspose

words

15.9.0

com.aspose

aspose-slides

15.9.0

工具类代码:

package com.lvic.prsp.common.util;

import com.aspose.words.Document;

import com.aspose.words.License;

import com.aspose.words.SaveFormat;

import com.aspose.slides.*;

import org.apache.commons.io.FileUtils;

import org.apache.log4j.Logger;

import java.io.File;

import java.io.FileOutputStream;

import java.io.InputStream;

import java.text.DecimalFormat;

/**

* 说明:

*

* @version 创建时间:2016年9月16日 下午2:40:43

*/

public class FileConvertUtils {

private static Logger logger = Logger.getLogger(FileConvertUtils.class);

/**

* 获取word licence

*

* @return

*/

private static boolean getWordLicense() {

InputStream license = null;

try {

license = FileConvertUtils.class.getClassLoader().getResourceAsStream("license.xml");// license路径

License aposeLic = new License();

aposeLic.setLicense(license);

} catch (Exception e) {

e.printStackTrace();

logger.error(e.getMessage(), e);

return false;

} finally {

if (license != null) {

try {

license.close();

} catch (Exception ex) {

logger.info(ex);

}

}

}

return true;

}

/**

* 获取pdf licence

*

* @return

*/

private static boolean getPdfLicense() {

InputStream license = null;

try {

license = FileConvertUtils.class.getClassLoader().getResourceAsStream("license.xml");// license路径

com.aspose.pdf.License aposeLic = new com.aspose.pdf.License();

aposeLic.setLicense(license);

} catch (Exception e) {

e.printStackTrace();

logger.error(e.getMessage(), e);

return false;

} finally {

if (license != null) {

try {

license.close();

} catch (Exception ex) {

logger.info(ex);

}

}

}

return true;

}

/**

* 获取ppt licence

*

* @return

*/

private static boolean getPptLicense() {

InputStream license = null;

try {

license = FileConvertUtils.class.getClassLoader().getResourceAsStream("license.xml");// license路径

com.aspose.slides.License aposeLic = new com.aspose.slides.License();

aposeLic.setLicense(license);

} catch (Exception e) {

e.printStackTrace();

logger.error(e.getMessage(), e);

return false;

} finally {

if (license != null) {

try {

license.close();

} catch (Exception ex) {

logger.info(ex);

}

}

}

return true;

}

/**

* word转pdf

*

* @return

*/

public static boolean wordToPdf(String wordPath, String pdfPath) {

// 验证License 若不验证则转化出的pdf文档会有水印产生

if (!getWordLicense()) {

return false;

}

FileOutputStream os = null;

boolean res = false;

try {

os = new FileOutputStream(pdfPath);

// 转化的word文档

com.aspose.words.Document doc = new com.aspose.words.Document(wordPath);

doc.save(os, SaveFormat.PDF);

res = true;

} catch (Exception e) {

logger.error(e);

throw new RuntimeException(e);

} finally {

if (os != null) {

try {

os.close();

} catch (Exception ex) {

logger.info(ex);

}

}

}

return res;

}

/**

* ppt转pdf

*

* @return

*/

public static boolean pptToPdf(String pptPath, String pdfPath) {

// 验证License 若不验证则转化出的pdf文档会有水印产生

if (!getPptLicense()) {

return false;

}

FileOutputStream os = null;

boolean res = false;

try {

os = new FileOutputStream(pdfPath);

// 转化的ppt文档

com.aspose.slides.Presentation doc = new com.aspose.slides.Presentation(pptPath);

doc.save(os, com.aspose.slides.SaveFormat.Pdf);

res = true;

} catch (Exception e) {

logger.error(e);

throw new RuntimeException(e);

} finally {

if (os != null) {

try {

os.close();

} catch (Exception ex) {

logger.info(ex);

}

}

}

return res;

}

/**

* pdf转html

*

* @return

*/

public static boolean pdfToHtml(String pdfPath, String htmlPath) {

// 验证License

if (!getPdfLicense()) {

return false;

}

com.aspose.pdf.Document pdfDocument = null;

boolean res = false;

try {

//pdf文档

pdfDocument = new com.aspose.pdf.Document(pdfPath);

//html转换选项

com.aspose.pdf.HtmlSaveOptions options = new com.aspose.pdf.HtmlSaveOptions();

//光栅图像保存模式

options.RasterImagesSavingMode = com.aspose.pdf.HtmlSaveOptions.RasterImagesSavingModes.AsEmbeddedPartsOfPngPageBackground;

//保存文档

pdfDocument.save(htmlPath, options);

res = true;

} catch (Exception e) {

logger.info(pdfPath + "转换pdf失败,目标路径:" + htmlPath);

logger.info(e);

return false;

} finally {

if (pdfDocument != null) {

try {

pdfDocument.close();

} catch (Exception ex) {

logger.info(ex);

}

}

}

return res;

}

/**

* pdf转图片

*

* @param pdfPath

* @param imgPath

* @return

*/

public static String pdfToImages(String pdfPath, String imgPath, String imgPrefix) {

// 验证License

if (!getPdfLicense()) {

return null;

}

String imageList="";

com.aspose.pdf.Document doc = null;

try {

doc = new com.aspose.pdf.Document(pdfPath);

if (doc == null) {

throw new Exception("pdf文件无效或者pdf文件被加密!");

}

//从PDF文档的第几页开始转换

int startPageNum = 1;

//从PDF文档的第几页开始停止转换

int endPageNum = doc.getPages().size();

//设置图片的像素,数字越大越清晰,如果为0,默认值为128,建议最大值不要超过1024

com.aspose.pdf.devices.Resolution resolution = new com.aspose.pdf.devices.Resolution(128);

com.aspose.pdf.devices.JpegDevice jpegDevice = new com.aspose.pdf.devices.JpegDevice(resolution, 100);

for (int i = startPageNum; i <= endPageNum; i++) {

doc.getPages().get_Item(i).sendTo(jpegDevice, imgPath + "/" + imgPrefix + "_" + new DecimalFormat("000").format(i) + ".jpg");

if (i == 0) {

imageList = imgPrefix + "_" + new DecimalFormat("000").format(i) + ".jpg";

} else {

imageList = imageList + "," + imgPrefix + "_" + new DecimalFormat("000").format(i) + ".jpg";

}

}

} catch (Exception ex) {

logger.info(ex);

} finally {

if (doc != null) {

try {

doc.close();

} catch (Exception ex) {

logger.info(ex);

}

}

}

return imageList;

}

public static void main(String[] args) {

FileConvertUtils utils = new FileConvertUtils();

utils.pptToPdf("D:\\test.ppt","D:\\ppttest1111111111.pdf");

}

}

这其中需要有license这里就不公布了!

需要的通知请进群qq: 600922504

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/436289.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【转】一篇易懂的CAN通讯协议指南1

转自&#xff1a;https://zhuanlan.zhihu.com/p/162708070 本文力求以图文并茂来接好CAN通讯协议的基础知识&#xff0c;希望能给有兴趣的朋友带来一些收获。 为了便于大家理解与接受&#xff0c;请先看一幅图&#xff1a; 图1 电话会议 简单地讲CAN总线就如上图1中两根粗黄线…

长字串与短字串

procedure TForm1.Button1Click(Sender: TObject); vars1: ShortString; //为兼容老版本而存在s2: string; //长字串&#xff0c;相当于动态字符数组s3: string[10]; //短字串&#xff0c;相当于静态字符数组&#xff0c;代替 ShortString beginShowMessage(IntToStr(…

Linux编程练习 --多线程4--条件变量

上一篇练习了互斥锁的用法和原理&#xff0c;这次学习和互斥锁一起应用的cond--条件变量 1.互斥锁的存在问题&#xff1a; 互斥锁一个明显的缺点是它只有两种状态&#xff1a;锁定和非锁定。设想一种简单情景&#xff1a;多个线程访问同一个共享资源时&#xff0c;并不知道何时…

在PHP中实现中文汉字验证码

PHP代码<?php /********************************* * Code by Gently * 24/07/07 *严正声明&#xff1a;验证码为程序随机生成&#xff0c;“某种巧合”的词语组合属于正常现象&#xff0c; *某些别有用心的人不要借题发挥&#xff01; **************…

java哈夫曼编码译码_哈夫曼编码与译码 java

展开全部package qwp;import java.util.ArrayDeque;import java.util.ArrayList;import java.util.Collections;import java.util.HashSet;import java.util.List;import java.util.Queue;import java.util.Scanner;public class HuffmanCoding {public static String writeStr…

【转】预编译头文件

http://www.cnblogs.com/nzbbody/p/3437868.html 1、解决什么问题&#xff1f; C 编译器是单独、分别对每个cpp文件进行预编译&#xff08;也就是对#include&#xff0c;#define 等进行文本替换&#xff09;&#xff0c;生成编译单元。编译单元是一个自包含文件&#xff0c;C编…

Linux编程练习 --多线程5--信号量(semaphore)

这一篇练习信号量的应用 信号量本质上是一个非负的整数计数器&#xff0c;也是UNIX中古老的实现进程互斥和同步的手段&#xff0c;Linux下信号量概念是在线程中&#xff0c;信号则在进程控制中&#xff0c;不过原理差不多&#xff0c;最基本最经典的操作莫过于P、V操作了&#…

【转】CAN协议深度解析-简单易懂协议详解

转自&#xff1a;https://zhuanlan.zhihu.com/p/343607068 CAN接口兼容规范2.0A和2.0B(主动)&#xff0c;位速率高达1兆位/秒。它可以接收和发送11位标识符的标准帧&#xff0c;也可以接收和发送29位标识符的扩展帧。 扩展帧的仲裁域有29位&#xff0c;可以出现2^29中报文&…

深度神经网络下的风格迁移模型(C#)

版权声明&#xff1a;本文为博主原创文章&#xff0c;转载请在显著位置标明本文出处以及作者网名&#xff0c;未经作者允许不得用于商业目的。 这个是C#版本的&#xff0c;这里就只放出代码。VB.Net版本请参看 深度神经网络下的风格迁移模型-CSDN博客 斯坦福大学李飞飞团队的…

使用 Visual Studio 2005 Team System 进行单元测试并生成用于 Unit Test Framework 的源代码...

PS&#xff1a;微软专家写的一往篇VSTS2005测试功能说明&#xff0c;非常详细。适合初学者查看。适用于&#xff1a;Microsoft Visual Studio 2005 Team System Beta 2Team Architect & Team Test EditionsMicrosoft Visual C# 2005摘要&#xff1a; Scott 详细介绍自动化单…

java银行利率_Java-银行计算利息

Bank类public class Bank {int savedMoney;int year;double interest;double interestRate0.29;public double computerInterest(){interestyear*interestRate*savedMoney;return interest;}public void setInterestRate(double rate){interestRaterate;}}ConstructionBank类pu…

【转】C++ win32窗口创建详解

转自&#xff1a;https://my.oschina.net/u/4328928/blog/3315324 本篇所讲解的内容仅限于 Windows 操作系统且限于 win32程序设计 现在我们在Windows系统上用的软件, 早已不是控制台界面, 而是窗体应用程序 窗体与控制台的区别就是: 有了窗口的概念 由于C的语法复杂, 使得…

java 子类继承父类_关于Java 的继承问题,子类会继承父类的哪些东西?-----转载...

和C类似&#xff0c;可以继承基类的公共属性和方法。在Java继承里&#xff0c;父类的属性还有方法在声明时&#xff0c;如果是public关键字即公共属性&#xff0c;则在子类继承时&#xff0c;这些属性和方法都会被子类继承。受保护的也可以继承但是私有的类属性成员和方法则无法…

天气很冷晚饭很香

今天和zhoujia 去吃她家门口的东北菜&#xff0c;席间谈笑风生&#xff0c;突然她说“亲爱的&#xff0c;眼光要看的长远一些”&#xff0c;附带标准的领导手势&#xff0c;让我笑翻。zhoujia是个乐观的人&#xff0c;从来没有见她发愁过&#xff0c;她的房子装修的也差不多了&…

【转】win32窗口的大小,居中,拖动

参考 https://www.cnblogs.com/findumars/p/3948315.html 不让调整大小 窗口风格设置&#xff0c;后面两个是最大最小化按钮 dwStyle^WS_THICKFRAME^WS_MAXIMIZEBOX^WS_MINIMIZEBOX 不让拖动 消息循环里添加 case WM_NCLBUTTONDOWN: { switch (wParam) …

java +号变空格_base64码通过http传输 +号变 空格 问题解决

通过七牛云base64上传图片&#xff0c;通过官方示例上传成功后&#xff0c;根据示例改了一个controller。通过前端往后端传base64码形式进行测试。死活不通过&#xff0c;七牛报400。仔细排查后发现&#xff0c;示例转换的base64码与前端传来的base64码稍有区别&#xff0c;前端…

Linux编程练习 --进程间通信1--无名管道

进程间通信系列--管道 管道可以说是最古老的IPC形式&#xff0c;所谓管道&#xff0c;是指进程间建立的一条通信的通道&#xff0c;从本质上看&#xff0c;管道是UNIX文件概念的推广管道通信的介质是文件&#xff0c;先看一下管道的特点&#xff1a; 1.管道的特点&#xff1a; …

2.3 Factory Method(工厂方法)

【返回目录】 我们现在把场景从险象丛生的特工战切换到更为壮观的二战中来&#xff0c;很多人都看过《拯救大兵瑞恩》&#xff0c;这部电影最著名的两场战斗非首和尾莫属&#xff0c;我们就用最后一场战役来举例说明什么是工厂方法吧。 相比诺曼底登陆&#xff0c;最后一场战役…

【转】CreateWindow函数详解

CreateWindow函数详解 在注册完窗口类后就需要进行窗口的创建&#xff0c;用到的函数理所当然就是CreateWindow()&#xff0c; 而这个函数是基于窗口类的&#xff0c;所以还需要指定几个参数来制定特定的窗口。而且像一些不带边框的窗口是怎么创建的也是具有相当的技巧的&#…

java中处理打折率_【JAVA300例】13、输入价格判断折扣,switch用法+int留整数方便判断...

import java.util.Scanner;public class Test013{public static void main(String[] args){Scanner in new Scanner(System.in);System.out.println("请输入金额(整数):");float money in.nextFloat();String zhekou "";if (money>1200){int grade …