Java实现Word/Excel/TXT转PDF的方法
引言:
前段时间公司做的教育系统,系统需要实时记录用户学习课程的情况和时间,所以对一些除视频课程之外,对一些文本文档型课件同样如此,初次的方案是讲office相关类型的文件进行转换Html文件,然后展示对应的html文件,PC端差不多没问题了,但是个别文件再转换html之后,样式出现了错乱,即时做了编码转换处理,但是还是有个别乱码,最后改变方案,最后统一将文件转为pdf,然后通过流的方式在前端展示,其中包括WordExcelPPTTXTPDF等文件,代码如下:
备注:本来是可以直接展示pdf的,但是Andior上pdf展示不了,最后统一就用IO流的方式进行读取展示了.
1:添加maven依赖
aspose 11.5.0 aspose words 16.4.0 aspose cell 8.9.2 aspose 11.5.0
2:添加license-excel.xml文件(Resource文件夹下)
Aspose.TotalforJava Aspose.WordsforJava Enterprise 20991231 20991231 8bfe198c-7f0c-4ef8-8ff0-acc3237bf0d7 sNLLKGMUdF0r8O1kKilWAGdgfs2BvJb/2Xp8p5iuDVfZXmhppo+d0Ran1P9TKdjV4ABwAgKXxJ3jcQTqE/2IRfqwnPf8itN8aFZlV3TJPYeD3yWE7IT55Gz6EijUpC7aKeoohTb4w2fpox58wWoF3SNp6sK6jDfiAUGEHYJ9pjU=
3:代码如下:
3.1获取License文件
publicstaticbooleangetLicense(){
booleanresult=false;
InputStreamis=null;
try{
is=UploadFiles.class.getClassLoader().getResourceAsStream("license-excel.xml");
LicenseaposeLic=newLicense();
aposeLic.setLicense(is);
result=true;
}catch(Exceptione){
e.printStackTrace();
}finally{
try{
is.close();
}catch(IOExceptione){
//TODOAuto-generatedcatchblock
e.printStackTrace();
}
}
returnresult;
}
3.2:文本文件转码
/*将txt转换编码
*@paramfile
*@authorzsqing
*/
publicFilesaveAsUTF8(Filefile){
Stringcode="gbk";
byte[]head=newbyte[3];
try{
InputStreaminputStream=newFileInputStream(file);
inputStream.read(head);
if(head[0]==-1&&head[1]==-2){
code="UTF-16";
}elseif(head[0]==-2&&head[1]==-1){
code="Unicode";
}elseif(head[0]==-17&&head[1]==-69&&head[2]==-65){
code="UTF-8";
}
inputStream.close();
System.out.println(code);
if(code.equals("UTF-8")){
returnfile;
}
Stringstr=FileUtils.readFileToString(file,code);
FileUtils.writeStringToFile(file,str,"UTF-8");
System.out.println("转码结束");
}catch(FileNotFoundExceptione){
e.printStackTrace();
}catch(IOExceptione){
e.printStackTrace();
}
returnfile;
}
3.3:word和txt转换pdf
/**
*将wordtxt转换成pdf
*@paraminPath
*@paramoutPath
*@authorzsqing
*/
publicvoidwordAndTextToPdf(StringinPath,StringoutPath,StringlocalIP,HttpServletRequestrequest)
{
StringfileToPdfUrl="";
booleanflag=false;
Filefile=null;
FileOutputStreamos=null;
try
{
//longold=System.currentTimeMillis();
//新建一个空白文档
file=newFile(outPath);
file=saveAsUTF8(file);
os=newFileOutputStream(file);
//InPath是将要被转化的文档
com.aspose.words.Documentdoc=newcom.aspose.words.Document(inPath);
/*
*全面支持DOC,DOCX进行OOXML,RTF,HTML,OpenDocument,PDF,EPUB,XPS,SWF间转换
*/
doc.save(os,SaveFormat.PDF);
flag=true;
//longnow=System.currentTimeMillis();
//System.out.println("共耗时:"+((now-old)/1000.0)+"秒");//转化用时
}
catch(Exceptione)
{
e.printStackTrace();
}
finally
{
try
{
if(os!=null)
{
os.close();
}
}
catch(Exceptione)
{
e.printStackTrace();
}
if(!flag)
{
file.deleteOnExit();
}
}
}
3.4:Excel转换pdf
/**
*将docx转换成pdf
*@paraminPath
*@paramoutPath
*@authorzsqing
*/
publicvoidwordToPdf(StringinPath,StringoutPath,StringlocalIP,HttpServletRequestrequest)
{
StringfileToPdfUrl="";
booleanflag=false;
Filefile=null;
FileOutputStreamos=null;
try
{
//longold=System.currentTimeMillis();
//新建一个空白文档
file=newFile(outPath);
file=saveAsUTF8(file);
os=newFileOutputStream(file);
//InPath是将要被转化的文档
com.aspose.words.Documentdoc=newcom.aspose.words.Document(inPath);
/*
*全面支持DOC,DOCX进行OOXML,RTF,HTML,OpenDocument,PDF,EPUB,XPS,SWF间转换
*/
doc.save(os,SaveFormat.PDF);
flag=true;
//longnow=System.currentTimeMillis();
//System.out.println("共耗时:"+((now-old)/1000.0)+"秒");//转化用时
}
catch(Exceptione)
{
e.printStackTrace();
}
finally
{
try
{
if(os!=null)
{
os.close();
}
}
catch(Exceptione)
{
e.printStackTrace();
}
if(!flag)
{
file.deleteOnExit();
}
}
}
总结
以上所述是小编给大家介绍的Java实现Word/Excel/TXT转PDF的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对毛票票网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!
声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:czq8825#qq.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。