我是靠谱客的博主 飘逸咖啡豆,最近开发中收集的这篇文章主要介绍用pageOffice控件实现 office word文档 编辑Word加水印的功能,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

OA办公中,业务需要多人编辑word文档,需要加文字水印的功能。

怎么实现word文档的编辑加文字水印呢?

1 实现方法

通过pageOffice实现简单的在线打开编辑word时,
通过设置doc.getWaterMark().setText(“PageOffice开发平台”); 属性,给Word文档添加文字水印。
就可以实现编辑word中增加水印的功能

2 实现过程

以java的springboot框架为例

1 集成pageOffice

https://www.zhuozhengsoft.com/dowm/
在这里插入图片描述
从pageOffice官网
下载页面,找到springboot的集成示例,按照里面的集成明说,可以集成到自己的springboot项目中。

2 在线打开编辑word

在这里插入图片描述
可以按照这个示例首先实现最基本的打开word的方法。

3 通过代码实现编辑word中增加水印的功能

代码参考以下功能示例代码
在这里插入图片描述
control代码

点击查看代码

@RestController
@RequestMapping(value = "/AddWaterMark")
public class AddWaterMarkController {
    @RequestMapping(value = "/Word", method = RequestMethod.GET)
    public ModelAndView showWord(HttpServletRequest request) {
        PageOfficeCtrl poCtrl = new PageOfficeCtrl(request);
        poCtrl.setServerPage(request.getContextPath() + "/poserver.zz");//设置服务页面

        WordDocument doc = new WordDocument();
        //添加水印 ,设置水印的内容
        doc.getWaterMark().setText("PageOffice开发平台");
        poCtrl.setWriter(doc);
        //打开Word文档
        poCtrl.webOpen("/doc/AddWaterMark/test.doc", OpenModeType.docNormalEdit, "张三");
        request.setAttribute("pageoffice", poCtrl.getHtmlCode("PageOfficeCtrl1"));
        ModelAndView mv = new ModelAndView("AddWaterMark/Word");
        return mv;
    }


}

 


html代码

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org" xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>添加水印</title>
    <meta http-equiv="pragma" content="no-cache">
    <meta http-equiv="cache-control" content="no-cache">
    <meta http-equiv="expires" content="0">
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="This is my page">
    <!--
    <link rel="stylesheet" type="text/css" href="styles.css">
    -->
</head>
<body>
<!--**************   卓正 PageOffice组件 ************************-->
<div style=" width:auto; height:700px;" th:utext="${pageoffice}">
</div>
</body>
</html>


通过以上代码,可以实现编辑word中增加水印的功能

4 效果图

在这里插入图片描述

最后

以上就是飘逸咖啡豆为你收集整理的用pageOffice控件实现 office word文档 编辑Word加水印的功能的全部内容,希望文章能够帮你解决用pageOffice控件实现 office word文档 编辑Word加水印的功能所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部