转载:用pageOffice控件实现 office word文档 强制留痕编辑Word

发布时间 2023-06-14 09:43:24作者: 爱吃苹果皮

用pageOffice控件实现 office word文档 强制留痕编辑Word

OA办公中,业务需要多人编辑word文档,需要强制留痕功能,用来查看文档编辑过程中的具体修改痕迹。

怎么实现word文档的强制留痕呢?

2 实现方法

通过pageOffice实现简单的在线打开编辑word时,
WebOpen方法的第二个参数使用docRevisionOnly,第三个参数传用户名,以强制留痕模式在线打开编辑Word文档。

就可以实现强制留痕编辑Word功能

3 实现过程

以java的springboot框架为例

1 集成pageOffice

https://www.zhuozhengsoft.com/dowm/

image
从pageOffice官网
下载页面,找到springboot的集成示例,按照里面的集成明说,可以集成到自己的springboot项目中。

2 在线打开编辑word

image

可以按照这个示例首先实现最基本的打开word的方法。

3 通过代码实现word留痕编辑

代码参考以下功能示例代码
image

control代码

点击查看代码
    @RequestMapping(value = "Word", method = RequestMethod.GET)
    public ModelAndView showWord(HttpServletRequest request, Map<String, Object> map) {
        PageOfficeCtrl poCtrl = new PageOfficeCtrl(request);
        poCtrl.setServerPage(request.getContextPath() + "/poserver.zz");//设置服务页面
        //添加自定义按钮
        poCtrl.addCustomToolButton("保存", "Save", 1);
        poCtrl.addCustomToolButton("隐藏痕迹", "hideRevision", 18);
        poCtrl.addCustomToolButton("显示痕迹", "showRevision", 9);
        //设置保存页面
        poCtrl.setSaveFilePage("save");//设置处理文件保存的请求方法
        //打开Word文档
        poCtrl.webOpen("/doc/RevisionOnly/test.doc", OpenModeType.docRevisionOnly, "张三");
        map.put("pageoffice", poCtrl.getHtmlCode("PageOfficeCtrl1"));
        ModelAndView mv = new ModelAndView("RevisionOnly/Word");
        return mv;
    }
<span class="hljs-meta">@RequestMapping</span>(<span class="hljs-string">"save"</span>)
<span class="hljs-keyword">public</span> <span class="hljs-built_in">void</span> <span class="hljs-title function_">save</span>(<span class="hljs-params">HttpServletRequest request, HttpServletResponse response</span>) {
    <span class="hljs-title class_">FileSaver</span> fs = <span class="hljs-keyword">new</span> <span class="hljs-title class_">FileSaver</span>(request, response);
    fs.<span class="hljs-title function_">saveToFile</span>(dir + <span class="hljs-string">"RevisionOnly/"</span> + fs.<span class="hljs-title function_">getFileName</span>());
    fs.<span class="hljs-title function_">close</span>();
}

html代码

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org"
      xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">

<head>
<meta charset="utf-8">
<title>XX文档系统</title>
<style>
#main {
width: 1040px;
height: 890px;
border: #83b3d9 2px solid;
background: #f2f7fb;

    }

    <span class="hljs-selector-id">#shut</span> {
        <span class="hljs-attribute">width</span>: <span class="hljs-number">45px</span>;
        <span class="hljs-attribute">height</span>: <span class="hljs-number">30px</span>;
        <span class="hljs-attribute">float</span>: right;
        <span class="hljs-attribute">margin-right</span>: -<span class="hljs-number">1px</span>;
    }

    <span class="hljs-selector-id">#shut</span><span class="hljs-selector-pseudo">:hover</span> {
    }
</span><span class="hljs-tag">&lt;/<span class="hljs-name">style</span>&gt;</span>

</head>
<body style="margin:0; padding:0;border:0px; overflow:hidden" scroll="no">

<script type="text/javascript">
function Save() {
document.getElementById("PageOfficeCtrl1").WebSave();
}

<span class="hljs-keyword">function</span> <span class="hljs-title function_">showRevision</span>(<span class="hljs-params"></span>) {
    <span class="hljs-variable language_">document</span>.<span class="hljs-title function_">getElementById</span>(<span class="hljs-string">"PageOfficeCtrl1"</span>).<span class="hljs-property">ShowRevisions</span> = <span class="hljs-literal">true</span>;
}

<span class="hljs-keyword">function</span> <span class="hljs-title function_">hideRevision</span>(<span class="hljs-params"></span>) {
    <span class="hljs-variable language_">document</span>.<span class="hljs-title function_">getElementById</span>(<span class="hljs-string">"PageOfficeCtrl1"</span>).<span class="hljs-property">ShowRevisions</span> = <span class="hljs-literal">false</span>;
}

</script>

<div id="main">

<span class="hljs-tag">&lt;<span class="hljs-name">div</span> <span class="hljs-attr">id</span>=<span class="hljs-string">"content"</span> <span class="hljs-attr">style</span>=<span class="hljs-string">"height:850px;width:1036px;overflow:hidden;"</span> <span class="hljs-attr">th:utext</span>=<span class="hljs-string">"${pageoffice}"</span>&gt;</span>
<span class="hljs-tag">&lt;/<span class="hljs-name">div</span>&gt;</span>

</div>
</body>

</html>

通过以上代码,可以实现word强制留痕编辑

4效果图

image

多人编辑后,可以强制留下自己的修改痕迹。

5总结

用pageOffice控件实现 office word文档 强制留痕编辑Word

转载:用pageOffice控件实现 office word文档 强制留痕编辑Word