文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Java实现在线预览的示例代码(openOffice实现)

2023-05-30 20:21

关注

简介

之前有写了poi实现在线预览的文章,里面也说到了使用openOffice也可以做到,这里就详细介绍一下。

我的实现逻辑有两种:

一、利用jodconverter(基于OpenOffice服务)将文件(.doc、.docx、.xls、.ppt)转化为html格式。

二、利用jodconverter(基于OpenOffice服务)将文件(.doc、.docx、.xls、.ppt)转化为pdf格式。

转换成html格式大家都能理解,这样就可以直接在浏览器上查看了,也就实现了在线预览的功能;转换成pdf格式这点,需要用户安装了Adobe Reader XI,这样你会发现把pdf直接拖到浏览器页面可以直接打开预览,这样也就实现了在线预览的功能。

将文件转化为html格式或者pdf格式

话不多说,直接上代码。

package com.pdfPreview.util;import java.io.File;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;import java.net.ConnectException;import java.text.SimpleDateFormat;import java.util.Date;import com.artofsolving.jodconverter.DocumentConverter;import com.artofsolving.jodconverter.openoffice.connection.OpenOfficeConnection;import com.artofsolving.jodconverter.openoffice.connection.SocketOpenOfficeConnection;import com.artofsolving.jodconverter.openoffice.converter.OpenOfficeDocumentConverter;public class Doc2HtmlUtil {  private static Doc2HtmlUtil doc2HtmlUtil;    public static synchronized Doc2HtmlUtil getDoc2HtmlUtilInstance() {    if (doc2HtmlUtil == null) {      doc2HtmlUtil = new Doc2HtmlUtil();    }    return doc2HtmlUtil;  }    public String file2Html(InputStream fromFileInputStream, String toFilePath,String type) throws IOException {    Date date = new Date();    SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");    String timesuffix = sdf.format(date);    String docFileName = null;    String htmFileName = null;    if("doc".equals(type)){      docFileName = "doc_" + timesuffix + ".doc";      htmFileName = "doc_" + timesuffix + ".html";    }else if("docx".equals(type)){      docFileName = "docx_" + timesuffix + ".docx";      htmFileName = "docx_" + timesuffix + ".html";    }else if("xls".equals(type)){      docFileName = "xls_" + timesuffix + ".xls";      htmFileName = "xls_" + timesuffix + ".html";    }else if("ppt".equals(type)){      docFileName = "ppt_" + timesuffix + ".ppt";      htmFileName = "ppt_" + timesuffix + ".html";    }else{      return null;    }    File htmlOutputFile = new File(toFilePath + File.separatorChar + htmFileName);    File docInputFile = new File(toFilePath + File.separatorChar + docFileName);    if (htmlOutputFile.exists())      htmlOutputFile.delete();    htmlOutputFile.createNewFile();    if (docInputFile.exists())      docInputFile.delete();    docInputFile.createNewFile();        try {      OutputStream os = new FileOutputStream(docInputFile);      int bytesRead = 0;      byte[] buffer = new byte[1024 * 8];      while ((bytesRead = fromFileInputStream.read(buffer)) != -1) {        os.write(buffer, 0, bytesRead);      }      os.close();      fromFileInputStream.close();    } catch (IOException e) {    }    OpenOfficeConnection connection = new SocketOpenOfficeConnection(8100);    try {      connection.connect();    } catch (ConnectException e) {      System.err.println("文件转换出错,请检查OpenOffice服务是否启动。");    }    // convert    DocumentConverter converter = new OpenOfficeDocumentConverter(connection);    converter.convert(docInputFile, htmlOutputFile);    connection.disconnect();    // 转换完之后删除word文件    docInputFile.delete();    return htmFileName;  }    public String file2pdf(InputStream fromFileInputStream, String toFilePath,String type) throws IOException {    Date date = new Date();    SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");    String timesuffix = sdf.format(date);    String docFileName = null;    String htmFileName = null;    if("doc".equals(type)){      docFileName = "doc_" + timesuffix + ".doc";      htmFileName = "doc_" + timesuffix + ".pdf";    }else if("docx".equals(type)){      docFileName = "docx_" + timesuffix + ".docx";      htmFileName = "docx_" + timesuffix + ".pdf";    }else if("xls".equals(type)){      docFileName = "xls_" + timesuffix + ".xls";      htmFileName = "xls_" + timesuffix + ".pdf";    }else if("ppt".equals(type)){      docFileName = "ppt_" + timesuffix + ".ppt";      htmFileName = "ppt_" + timesuffix + ".pdf";    }else{      return null;    }    File htmlOutputFile = new File(toFilePath + File.separatorChar + htmFileName);    File docInputFile = new File(toFilePath + File.separatorChar + docFileName);    if (htmlOutputFile.exists())      htmlOutputFile.delete();    htmlOutputFile.createNewFile();    if (docInputFile.exists())      docInputFile.delete();    docInputFile.createNewFile();        try {      OutputStream os = new FileOutputStream(docInputFile);      int bytesRead = 0;      byte[] buffer = new byte[1024 * 8];      while ((bytesRead = fromFileInputStream.read(buffer)) != -1) {        os.write(buffer, 0, bytesRead);      }      os.close();      fromFileInputStream.close();    } catch (IOException e) {    }    OpenOfficeConnection connection = new SocketOpenOfficeConnection(8100);    try {      connection.connect();    } catch (ConnectException e) {      System.err.println("文件转换出错,请检查OpenOffice服务是否启动。");    }    // convert    DocumentConverter converter = new OpenOfficeDocumentConverter(connection);    converter.convert(docInputFile, htmlOutputFile);    connection.disconnect();    // 转换完之后删除word文件    docInputFile.delete();    return htmFileName;  }  public static void main(String[] args) throws IOException {    Doc2HtmlUtil coc2HtmlUtil = getDoc2HtmlUtilInstance();    File file = null;    FileInputStream fileInputStream = null;    file = new File("D:/poi-test/exportExcel.xls");    fileInputStream = new FileInputStream(file);//   coc2HtmlUtil.file2Html(fileInputStream, "D:/poi-test/openOffice/xls","xls");    coc2HtmlUtil.file2pdf(fileInputStream, "D:/poi-test/openOffice/xls","xls");    file = new File("D:/poi-test/test.doc");    fileInputStream = new FileInputStream(file);//   coc2HtmlUtil.file2Html(fileInputStream, "D:/poi-test/openOffice/doc","doc");    coc2HtmlUtil.file2pdf(fileInputStream, "D:/poi-test/openOffice/doc","doc");    file = new File("D:/poi-test/周报模版.ppt");    fileInputStream = new FileInputStream(file);//   coc2HtmlUtil.file2Html(fileInputStream, "D:/poi-test/openOffice/ppt","ppt");    coc2HtmlUtil.file2pdf(fileInputStream, "D:/poi-test/openOffice/ppt","ppt");    file = new File("D:/poi-test/test.docx");    fileInputStream = new FileInputStream(file);//   coc2HtmlUtil.file2Html(fileInputStream, "D:/poi-test/openOffice/docx","docx");    coc2HtmlUtil.file2pdf(fileInputStream, "D:/poi-test/openOffice/docx","docx");  }}

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 资料下载
  • 历年真题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯