├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── build.gradle ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── main ├── java │ └── com │ │ └── github │ │ └── izhangzhihao │ │ └── OfficeProducer │ │ ├── ByteArrayDataSource.java │ │ ├── DocProducer.java │ │ ├── DocxProducer.java │ │ ├── FileUtils.java │ │ └── ListUtils.java └── resources │ ├── Template │ ├── 10.docx │ └── 2.doc │ ├── images │ └── 33.png │ └── logback.groovy └── test └── java └── com └── github └── izhangzhihao └── OfficeProducer ├── DocProducerTest.java └── DocxProducerTest.java /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | build/ 3 | out/ 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: java 2 | sudo: required 3 | 4 | 5 | jdk: 6 | - oraclejdk8 7 | 8 | before_install: 9 | - chmod +x gradlew 10 | 11 | script: 12 | - java -version 13 | - ./gradlew -version 14 | - ./gradlew assemble 15 | 16 | before_cache: 17 | - rm -f $HOME/.gradle/caches/modules-2/modules-2.lock 18 | - rm -fr $HOME/.gradle/caches/*/plugin-resolution/ 19 | 20 | cache: 21 | directories: 22 | - $HOME/.gradle/caches/ 23 | - $HOME/.gradle/wrapper/ 24 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # OfficeProducer [![Build Status](https://travis-ci.org/izhangzhihao/OfficeProducer.svg?branch=master)](https://travis-ci.org/izhangzhihao/OfficeProducer) 2 | 3 | ## This project is based on [Docx4j](https://github.com/plutext/docx4j) (for docx) and [POI](https://poi.apache.org/) (for doc) 4 | 5 | ## produce doc/docx/pdf format from doc/docx template 6 | 7 | ## 支持从docx/doc模板生成doc/docx/pdf文件,替换docx中的${parameter}参数、插入图片、加密、转PDF、段落替换 8 | -------------------------------------------------------------------------------- /build.gradle: -------------------------------------------------------------------------------- 1 | group "com.github.izhangzhihao" 2 | version "1.0-SNAPSHOT" 3 | 4 | apply plugin: "java" 5 | apply plugin: "jacoco" 6 | apply plugin: "idea" 7 | 8 | sourceCompatibility = 1.8 9 | targetCompatibility = 1.8 10 | def SpringVersion = "4.3.3.RELEASE" 11 | def POIVersion = "3.15-beta2" 12 | 13 | 14 | repositories { 15 | mavenLocal() 16 | maven { url "http://maven.aliyun.com/nexus/content/groups/public/" } 17 | jcenter() 18 | mavenCentral() 19 | maven { url "http://repo.spring.io/release" } 20 | maven { url "https://repo.spring.io/libs-snapshot" } 21 | } 22 | 23 | dependencies { 24 | compile( 25 | // spring framework 26 | "org.springframework:spring-beans:$SpringVersion", 27 | "org.springframework:spring-aop:$SpringVersion", 28 | "org.springframework:spring-aspects:$SpringVersion", 29 | "org.springframework:spring-core:$SpringVersion", 30 | 31 | "javax.servlet:javax.servlet-api:3.1.0", 32 | 33 | //apache 34 | "commons-fileupload:commons-fileupload:1.3.2", 35 | "org.apache.commons:commons-lang3:3.4",//深拷贝 36 | 37 | //jUnit 38 | "junit:junit:4.12", 39 | 40 | //@NotNull 41 | "org.jetbrains:annotations:15.0", 42 | 43 | //Lombok 44 | "org.projectlombok:lombok:1.16.10", 45 | 46 | //POI 47 | "org.apache.poi:poi:$POIVersion", 48 | "org.apache.poi:poi-ooxml:$POIVersion", 49 | "org.apache.poi:poi-scratchpad:$POIVersion", 50 | "org.apache.poi:poi-ooxml-schemas:$POIVersion", 51 | "org.apache.xmlbeans:xmlbeans:2.6.0", 52 | "org.apache.poi:poi-excelant:$POIVersion", 53 | 54 | // 55 | //"com.lowagie:itext:2.1.7", 56 | //"com.lowagie:itext-rtf:2.1.7", 57 | 58 | "org.docx4j:docx4j:3.3.1", 59 | "org.docx4j:docx4j-export-fo:3.3.1", 60 | 61 | "org.codehaus.groovy:groovy:2.4.7", 62 | 63 | //slf4j 64 | "org.slf4j:jcl-over-slf4j:1.7.21", 65 | "ch.qos.logback:logback-core:1.1.7", 66 | "ch.qos.logback:logback-classic:1.1.7", 67 | ) 68 | testCompile( 69 | //jUnit 70 | "junit:junit:4.12", 71 | ) 72 | } 73 | 74 | task copyJars(type: Copy) { 75 | from configurations.runtime 76 | into "lib" //复制到lib目录 77 | } 78 | 79 | //让gradle支持中文 80 | tasks.withType(JavaCompile) { 81 | options.encoding = "UTF-8" 82 | } 83 | 84 | test { 85 | useJUnit() 86 | // listen to events in the test execution lifecycle 87 | beforeTest { descriptor -> 88 | logger.lifecycle("Running test: " + descriptor) 89 | } 90 | 91 | // listen to standard out and standard error of the test JVM(s) 92 | onOutput { descriptor, event -> 93 | logger.lifecycle("Test: " + descriptor + " produced standard out/err: " + event.message) 94 | } 95 | 96 | jacoco { 97 | destinationFile = file("$buildDir/jacoco/test.exec") 98 | } 99 | } 100 | 101 | jacocoTestReport { 102 | reports { 103 | xml.enabled false 104 | csv.enabled false 105 | html.destination "${buildDir}/jacocoHtml" 106 | } 107 | } 108 | 109 | build.dependsOn jacocoTestReport 110 | 111 | task integrationTest(type: Test) { 112 | include "test/java/**" 113 | } 114 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izhangzhihao/OfficeProducer/64fd830e379a83075aa3afaa1002bbb512ecb425/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Aug 18 22:27:48 CST 2016 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-3.0-bin.zip 7 | -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | ############################################################################## 4 | ## 5 | ## Gradle start up script for UN*X 6 | ## 7 | ############################################################################## 8 | 9 | # Attempt to set APP_HOME 10 | # Resolve links: $0 may be a link 11 | PRG="$0" 12 | # Need this for relative symlinks. 13 | while [ -h "$PRG" ] ; do 14 | ls=`ls -ld "$PRG"` 15 | link=`expr "$ls" : '.*-> \(.*\)$'` 16 | if expr "$link" : '/.*' > /dev/null; then 17 | PRG="$link" 18 | else 19 | PRG=`dirname "$PRG"`"/$link" 20 | fi 21 | done 22 | SAVED="`pwd`" 23 | cd "`dirname \"$PRG\"`/" >/dev/null 24 | APP_HOME="`pwd -P`" 25 | cd "$SAVED" >/dev/null 26 | 27 | APP_NAME="Gradle" 28 | APP_BASE_NAME=`basename "$0"` 29 | 30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 31 | DEFAULT_JVM_OPTS="" 32 | 33 | # Use the maximum available, or set MAX_FD != -1 to use that value. 34 | MAX_FD="maximum" 35 | 36 | warn ( ) { 37 | echo "$*" 38 | } 39 | 40 | die ( ) { 41 | echo 42 | echo "$*" 43 | echo 44 | exit 1 45 | } 46 | 47 | # OS specific support (must be 'true' or 'false'). 48 | cygwin=false 49 | msys=false 50 | darwin=false 51 | nonstop=false 52 | case "`uname`" in 53 | CYGWIN* ) 54 | cygwin=true 55 | ;; 56 | Darwin* ) 57 | darwin=true 58 | ;; 59 | MINGW* ) 60 | msys=true 61 | ;; 62 | NONSTOP* ) 63 | nonstop=true 64 | ;; 65 | esac 66 | 67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 68 | 69 | # Determine the Java command to use to start the JVM. 70 | if [ -n "$JAVA_HOME" ] ; then 71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 72 | # IBM's JDK on AIX uses strange locations for the executables 73 | JAVACMD="$JAVA_HOME/jre/sh/java" 74 | else 75 | JAVACMD="$JAVA_HOME/bin/java" 76 | fi 77 | if [ ! -x "$JAVACMD" ] ; then 78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 79 | 80 | Please set the JAVA_HOME variable in your environment to match the 81 | location of your Java installation." 82 | fi 83 | else 84 | JAVACMD="java" 85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 86 | 87 | Please set the JAVA_HOME variable in your environment to match the 88 | location of your Java installation." 89 | fi 90 | 91 | # Increase the maximum file descriptors if we can. 92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 93 | MAX_FD_LIMIT=`ulimit -H -n` 94 | if [ $? -eq 0 ] ; then 95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 96 | MAX_FD="$MAX_FD_LIMIT" 97 | fi 98 | ulimit -n $MAX_FD 99 | if [ $? -ne 0 ] ; then 100 | warn "Could not set maximum file descriptor limit: $MAX_FD" 101 | fi 102 | else 103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 104 | fi 105 | fi 106 | 107 | # For Darwin, add options to specify how the application appears in the dock 108 | if $darwin; then 109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 110 | fi 111 | 112 | # For Cygwin, switch paths to Windows format before running java 113 | if $cygwin ; then 114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 116 | JAVACMD=`cygpath --unix "$JAVACMD"` 117 | 118 | # We build the pattern for arguments to be converted via cygpath 119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 120 | SEP="" 121 | for dir in $ROOTDIRSRAW ; do 122 | ROOTDIRS="$ROOTDIRS$SEP$dir" 123 | SEP="|" 124 | done 125 | OURCYGPATTERN="(^($ROOTDIRS))" 126 | # Add a user-defined pattern to the cygpath arguments 127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 129 | fi 130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 131 | i=0 132 | for arg in "$@" ; do 133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 135 | 136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 138 | else 139 | eval `echo args$i`="\"$arg\"" 140 | fi 141 | i=$((i+1)) 142 | done 143 | case $i in 144 | (0) set -- ;; 145 | (1) set -- "$args0" ;; 146 | (2) set -- "$args0" "$args1" ;; 147 | (3) set -- "$args0" "$args1" "$args2" ;; 148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;; 149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 154 | esac 155 | fi 156 | 157 | # Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules 158 | function splitJvmOpts() { 159 | JVM_OPTS=("$@") 160 | } 161 | eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS 162 | JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME" 163 | 164 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong 165 | if [[ "$(uname)" == "Darwin" ]] && [[ "$HOME" == "$PWD" ]]; then 166 | cd "$(dirname "$0")" 167 | fi 168 | 169 | exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@" 170 | -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @if "%DEBUG%" == "" @echo off 2 | @rem ########################################################################## 3 | @rem 4 | @rem Gradle startup script for Windows 5 | @rem 6 | @rem ########################################################################## 7 | 8 | @rem Set local scope for the variables with windows NT shell 9 | if "%OS%"=="Windows_NT" setlocal 10 | 11 | set DIRNAME=%~dp0 12 | if "%DIRNAME%" == "" set DIRNAME=. 13 | set APP_BASE_NAME=%~n0 14 | set APP_HOME=%DIRNAME% 15 | 16 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 17 | set DEFAULT_JVM_OPTS= 18 | 19 | @rem Find java.exe 20 | if defined JAVA_HOME goto findJavaFromJavaHome 21 | 22 | set JAVA_EXE=java.exe 23 | %JAVA_EXE% -version >NUL 2>&1 24 | if "%ERRORLEVEL%" == "0" goto init 25 | 26 | echo. 27 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 28 | echo. 29 | echo Please set the JAVA_HOME variable in your environment to match the 30 | echo location of your Java installation. 31 | 32 | goto fail 33 | 34 | :findJavaFromJavaHome 35 | set JAVA_HOME=%JAVA_HOME:"=% 36 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 37 | 38 | if exist "%JAVA_EXE%" goto init 39 | 40 | echo. 41 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 42 | echo. 43 | echo Please set the JAVA_HOME variable in your environment to match the 44 | echo location of your Java installation. 45 | 46 | goto fail 47 | 48 | :init 49 | @rem Get command-line arguments, handling Windows variants 50 | 51 | if not "%OS%" == "Windows_NT" goto win9xME_args 52 | 53 | :win9xME_args 54 | @rem Slurp the command line arguments. 55 | set CMD_LINE_ARGS= 56 | set _SKIP=2 57 | 58 | :win9xME_args_slurp 59 | if "x%~1" == "x" goto execute 60 | 61 | set CMD_LINE_ARGS=%* 62 | 63 | :execute 64 | @rem Setup the command line 65 | 66 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 67 | 68 | @rem Execute Gradle 69 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% 70 | 71 | :end 72 | @rem End local scope for the variables with windows NT shell 73 | if "%ERRORLEVEL%"=="0" goto mainEnd 74 | 75 | :fail 76 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 77 | rem the _cmd.exe /c_ return code! 78 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 79 | exit /b 1 80 | 81 | :mainEnd 82 | if "%OS%"=="Windows_NT" endlocal 83 | 84 | :omega 85 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'OfficeProducer' 2 | 3 | -------------------------------------------------------------------------------- /src/main/java/com/github/izhangzhihao/OfficeProducer/ByteArrayDataSource.java: -------------------------------------------------------------------------------- 1 | package com.github.izhangzhihao.OfficeProducer; 2 | 3 | /** 4 | * Created by 张志豪 on 2016/11/25 0025. 5 | */ 6 | import javax.activation.DataSource; 7 | import java.io.ByteArrayInputStream; 8 | import java.io.InputStream; 9 | import java.io.OutputStream; 10 | 11 | public final class ByteArrayDataSource implements DataSource { 12 | private final String contentType; 13 | private final byte[] buf; 14 | private final int len; 15 | 16 | public ByteArrayDataSource(byte[] buf, String contentType) { 17 | this(buf, buf.length, contentType); 18 | } 19 | 20 | public ByteArrayDataSource(byte[] buf, int length, String contentType) { 21 | this.buf = buf; 22 | this.len = length; 23 | this.contentType = contentType; 24 | } 25 | 26 | public String getContentType() { 27 | return this.contentType == null?"application/octet-stream":this.contentType; 28 | } 29 | 30 | public InputStream getInputStream() { 31 | return new ByteArrayInputStream(this.buf, 0, this.len); 32 | } 33 | 34 | public String getName() { 35 | return null; 36 | } 37 | 38 | public OutputStream getOutputStream() { 39 | throw new UnsupportedOperationException(); 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /src/main/java/com/github/izhangzhihao/OfficeProducer/DocProducer.java: -------------------------------------------------------------------------------- 1 | package com.github.izhangzhihao.OfficeProducer; 2 | 3 | import lombok.Cleanup; 4 | import org.apache.poi.hwpf.HWPFDocument; 5 | import org.apache.poi.hwpf.usermodel.Range; 6 | 7 | import java.io.FileOutputStream; 8 | import java.io.InputStream; 9 | import java.io.OutputStream; 10 | import java.util.HashMap; 11 | import java.util.Map; 12 | 13 | /** 14 | * 创建、操作Doc的一系列方法 15 | */ 16 | @SuppressWarnings({"JavaDoc", "WeakerAccess"}) 17 | public class DocProducer { 18 | 19 | /** 20 | * 创建Doc并保存 21 | * 22 | * @param templatePath 模板doc路径 23 | * @param parameters 参数和值 24 | * //* @param imageParameters 书签和图片 25 | * @param savePath 保存doc的路径 26 | * @return 27 | */ 28 | public static void CreateDocFromTemplate(String templatePath, 29 | HashMap parameters, 30 | //HashMap imageParameters, 31 | String savePath) 32 | throws Exception { 33 | @Cleanup InputStream is = DocProducer.class.getResourceAsStream(templatePath); 34 | HWPFDocument doc = new HWPFDocument(is); 35 | Range range = doc.getRange(); 36 | 37 | //把range范围内的${}替换 38 | for (Map.Entry next : parameters.entrySet()) { 39 | range.replaceText("${" + next.getKey() + "}", 40 | next.getValue() 41 | ); 42 | } 43 | 44 | @Cleanup OutputStream os = new FileOutputStream(savePath); 45 | //把doc输出到输出流中 46 | doc.write(os); 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /src/main/java/com/github/izhangzhihao/OfficeProducer/DocxProducer.java: -------------------------------------------------------------------------------- 1 | package com.github.izhangzhihao.OfficeProducer; 2 | 3 | 4 | import lombok.Cleanup; 5 | import lombok.extern.slf4j.Slf4j; 6 | import org.apache.commons.io.IOUtils; 7 | import org.apache.commons.lang3.StringUtils; 8 | import org.docx4j.Docx4J; 9 | import org.docx4j.TraversalUtil; 10 | import org.docx4j.XmlUtils; 11 | import org.docx4j.dml.wordprocessingDrawing.Inline; 12 | import org.docx4j.finders.RangeFinder; 13 | import org.docx4j.jaxb.Context; 14 | import org.docx4j.openpackaging.exceptions.Docx4JException; 15 | import org.docx4j.openpackaging.packages.ProtectDocument; 16 | import org.docx4j.openpackaging.packages.WordprocessingMLPackage; 17 | import org.docx4j.openpackaging.parts.WordprocessingML.BinaryPartAbstractImage; 18 | import org.docx4j.openpackaging.parts.WordprocessingML.MainDocumentPart; 19 | import org.docx4j.wml.*; 20 | 21 | import javax.servlet.http.HttpServletResponse; 22 | import javax.xml.bind.JAXBElement; 23 | import javax.xml.bind.JAXBException; 24 | import java.io.*; 25 | import java.net.URLEncoder; 26 | import java.util.*; 27 | 28 | import static com.github.izhangzhihao.OfficeProducer.FileUtils.copy; 29 | import static com.github.izhangzhihao.OfficeProducer.FileUtils.inputStreamToFile; 30 | import static com.github.izhangzhihao.OfficeProducer.ListUtils.isNullOrEmpty; 31 | 32 | /** 33 | * 创建、操作Docx的一系列方法 34 | */ 35 | @SuppressWarnings({"JavaDoc", "SpellCheckingInspection", "WeakerAccess", "unused"}) 36 | @Slf4j 37 | public class DocxProducer { 38 | 39 | private static boolean DELETE_BOOKMARK = false; 40 | 41 | private static org.docx4j.wml.ObjectFactory factory = Context.getWmlObjectFactory(); 42 | 43 | /** 44 | * 创建Docx的主方法 45 | * 46 | * @param templatePath 模板docx路径 47 | * @param parameters 参数和值 48 | * @param paragraphParameters 段落参数 49 | * @param imageParameters 书签和图片 50 | * @return 51 | */ 52 | private static WordprocessingMLPackage CreateWordprocessingMLPackageFromTemplate(String templatePath, 53 | HashMap parameters, 54 | HashMap paragraphParameters, 55 | HashMap imageParameters) 56 | throws Exception { 57 | @Cleanup InputStream docxStream = DocxProducer.class.getResourceAsStream(templatePath); 58 | WordprocessingMLPackage wordMLPackage = WordprocessingMLPackage.load(docxStream); 59 | MainDocumentPart documentPart = wordMLPackage.getMainDocumentPart(); 60 | 61 | //第一步 替换字符参数 62 | if (parameters != null) { 63 | replaceParameters(documentPart, parameters); 64 | } 65 | 66 | //第二步 替换段落 67 | if (paragraphParameters != null) { 68 | replaceParagraph(documentPart, paragraphParameters); 69 | } 70 | 71 | //第三步 插入图片 72 | if (imageParameters != null) { 73 | replaceBookMarkWithImage(wordMLPackage, documentPart, imageParameters); 74 | } 75 | return wordMLPackage; 76 | } 77 | 78 | /** 79 | * 创建Docx并保存 80 | * 81 | * @param templatePath 模板docx路径 82 | * @param parameters 参数和值 83 | * @param imageParameters 书签和图片 84 | * @param savePath 保存docx的路径 85 | * @return 86 | */ 87 | public static void CreateDocxFromTemplate(String templatePath, 88 | HashMap parameters, 89 | HashMap paragraphParameters, 90 | HashMap imageParameters, 91 | String savePath) 92 | throws Exception { 93 | WordprocessingMLPackage wordMLPackage = CreateWordprocessingMLPackageFromTemplate(templatePath, parameters, paragraphParameters, imageParameters); 94 | 95 | //保存 96 | saveDocx(wordMLPackage, savePath); 97 | } 98 | 99 | 100 | /** 101 | * 创建Docx并加密保存 102 | * 103 | * @param templatePath 模板docx路径 104 | * @param parameters 参数和值 105 | * @param imageParameters 书签和图片 106 | * @param savePath 保存docx的路径 107 | * @return 108 | */ 109 | public static void CreateEncryptDocxFromTemplate(String templatePath, 110 | HashMap parameters, 111 | HashMap paragraphParameters, 112 | HashMap imageParameters, 113 | String savePath, 114 | String passWord) 115 | throws Exception { 116 | WordprocessingMLPackage wordMLPackage = CreateWordprocessingMLPackageFromTemplate(templatePath, parameters, paragraphParameters, imageParameters); 117 | 118 | //加密 119 | ProtectDocument protection = new ProtectDocument(wordMLPackage); 120 | protection.restrictEditing(STDocProtect.READ_ONLY, passWord); 121 | 122 | //保存 123 | saveDocx(wordMLPackage, savePath); 124 | } 125 | 126 | /** 127 | * 创建Docx并加密,返回InputStream 128 | * 129 | * @param templatePath 模板docx路径 130 | * @param parameters 参数和值 131 | * @param imageParameters 书签和图片 132 | * @return 133 | */ 134 | public static InputStream CreateEncryptDocxStreamFromTemplate(String templatePath, 135 | HashMap parameters, 136 | HashMap paragraphParameters, 137 | HashMap imageParameters, 138 | String passWord) 139 | throws Exception { 140 | WordprocessingMLPackage wordMLPackage = CreateWordprocessingMLPackageFromTemplate(templatePath, parameters, paragraphParameters, imageParameters); 141 | 142 | //加密 143 | ProtectDocument protection = new ProtectDocument(wordMLPackage); 144 | protection.restrictEditing(STDocProtect.READ_ONLY, passWord); 145 | 146 | ByteArrayOutputStream baos = new ByteArrayOutputStream(); 147 | 148 | wordMLPackage.save(baos); 149 | 150 | ByteArrayDataSource bads = 151 | new ByteArrayDataSource(baos.toByteArray(), "application/vnd.openxmlformats-officedocument.wordprocessingml.document"); 152 | return bads.getInputStream(); 153 | 154 | } 155 | 156 | /** 157 | * 根据模板创建docx文档并放到response的outputstream中 158 | * 159 | * @param templatePath 160 | * @param parameter 161 | * @param fileName 162 | * @param response 163 | */ 164 | public static void CreateEncryptDocxToResponseFromTemplate(String templatePath, 165 | HashMap parameter, 166 | HashMap paragraphParameters, 167 | HashMap imageParameters, 168 | String fileName, 169 | HttpServletResponse response) throws Exception { 170 | final InputStream inputStream = CreateEncryptDocxStreamFromTemplate(templatePath, parameter, paragraphParameters, imageParameters, UUID.randomUUID().toString()); 171 | 172 | response.setContentType("application/vnd.openxmlformats-officedocument.wordprocessingml.document"); 173 | response.addHeader("Content-Disposition", "attachment; filename=" + URLEncoder.encode(fileName, "utf-8")); 174 | copy(inputStream, response.getOutputStream()); 175 | } 176 | 177 | /** 178 | * 根据模板创建docx文档返回File 179 | * 180 | * @param templatePath 181 | * @param parameter 182 | * @param fileName 183 | */ 184 | public static File CreateEncryptDocxFileFromTemplate(String templatePath, 185 | HashMap parameter, 186 | HashMap paragraphParameters, 187 | HashMap imageParameters, 188 | String fileName) throws Exception { 189 | final InputStream inputStream = CreateEncryptDocxStreamFromTemplate(templatePath, parameter, paragraphParameters, imageParameters, UUID.randomUUID().toString()); 190 | File file = new File(fileName); 191 | inputStreamToFile(inputStream, file); 192 | return file; 193 | } 194 | 195 | /** 196 | * 从Docx模板文件创建Docx然后转化为pdf 197 | * 198 | * @param templatePath 模板docx路径 199 | * @param parameters 参数和值 200 | * @param imageParameters 书签和图片 201 | * @param savePath 保存pdf的路径 202 | * @return 203 | */ 204 | public static void CreatePDFFromDocxTemplate(String templatePath, 205 | HashMap parameters, 206 | HashMap paragraphParameters, 207 | HashMap imageParameters, 208 | String savePath) 209 | throws Exception { 210 | WordprocessingMLPackage wordMLPackage = CreateWordprocessingMLPackageFromTemplate(templatePath, parameters, paragraphParameters, imageParameters); 211 | 212 | //转化成PDF 213 | convertDocxToPDF(wordMLPackage, savePath); 214 | 215 | } 216 | 217 | /** 218 | * 保存当前Docx文件 219 | */ 220 | private static void saveDocx(WordprocessingMLPackage wordMLPackage, 221 | String savePath) 222 | throws FileNotFoundException, Docx4JException { 223 | Docx4J.save(wordMLPackage, new File(savePath), Docx4J.FLAG_SAVE_ZIP_FILE); 224 | } 225 | 226 | /** 227 | * 替换模板中的参数 228 | * 229 | * @param documentPart 230 | * @param parameters 231 | * @throws JAXBException 232 | * @throws Docx4JException 233 | */ 234 | private static void replaceParameters(MainDocumentPart documentPart, 235 | HashMap parameters) 236 | throws JAXBException, Docx4JException { 237 | documentPart.variableReplace(parameters); 238 | } 239 | 240 | /** 241 | * 根据字符串参数替换段落 242 | * 243 | * @param documentPart 244 | * @param paragraphParameters 245 | */ 246 | private static void replaceParagraph(MainDocumentPart documentPart, HashMap paragraphParameters) throws JAXBException, Docx4JException { 247 | //List tables = getAllElementFromObject(documentPart, Tbl.class); 248 | /*for (Map.Entry entries : paragraphParameters.entrySet()) { 249 | final Tbl table = getTemplateTable(tables, entries.getKey()); 250 | final List allElementFromObject = getAllElementFromObject(table, P.class); 251 | final P p = (P) allElementFromObject.get(1); 252 | appendParaRContent(p, entries.getValue()); 253 | }*/ 254 | final List allElementFromObject = getAllElementFromObject(documentPart, P.class); 255 | //final P p = (P) allElementFromObject.get(22); 256 | 257 | for (Object paragraph : allElementFromObject) { 258 | final P para = (P) paragraph; 259 | if (!isNullOrEmpty(para.getContent())) { 260 | final List content = para.getContent(); 261 | final String stringFromContent = getStringFromContent(content); 262 | final String s = paragraphParameters.get(stringFromContent); 263 | if (s != null) { 264 | appendParaRContent(para, s); 265 | } 266 | } 267 | } 268 | } 269 | 270 | /** 271 | * 从Content中获得内容 272 | * 273 | * @param content 274 | * @return 275 | */ 276 | public static String getStringFromContent(List content) { 277 | StringBuilder contentStr = new StringBuilder(); 278 | for (Object o : content) { 279 | if (o.getClass() == R.class) { 280 | final Object text = ((JAXBElement) ((R) o).getContent().get(0)).getValue(); 281 | if (text.getClass() == Text.class) { 282 | contentStr.append(((Text) text).getValue()); 283 | } 284 | } 285 | } 286 | return contentStr.toString(); 287 | } 288 | 289 | 290 | /** 291 | * 替换书签为图片 292 | * 293 | * @param wordMLPackage 294 | * @param documentPart 295 | * @param imageParameters 296 | * @throws Exception 297 | */ 298 | private static void replaceBookMarkWithImage(WordprocessingMLPackage wordMLPackage, 299 | MainDocumentPart documentPart, 300 | Map imageParameters) 301 | throws Exception { 302 | Document wmlDoc = documentPart.getContents(); 303 | Body body = wmlDoc.getBody(); 304 | // 提取正文中所有段落 305 | List paragraphs = body.getContent(); 306 | // 提取书签并创建书签的游标 307 | RangeFinder rt = new RangeFinder("CTBookmark", "CTMarkupRange"); 308 | new TraversalUtil(paragraphs, rt); 309 | 310 | // 遍历书签 311 | for (CTBookmark bm : rt.getStarts()) { 312 | String bookmarkName = bm.getName(); 313 | String imagePath = imageParameters.get(bookmarkName); 314 | if (imagePath != null) { 315 | File imageFile = new File(imagePath); 316 | InputStream imageStream = new FileInputStream(imageFile); 317 | // 读入图片并转化为字节数组,因为docx4j只能字节数组的方式插入图片 318 | byte[] bytes = IOUtils.toByteArray(imageStream); 319 | // 创建一个行内图片 320 | BinaryPartAbstractImage imagePart = BinaryPartAbstractImage.createImagePart(wordMLPackage, bytes); 321 | // createImageInline函数的前四个参数我都没有找到具体啥意思 322 | // 最后一个是限制图片的宽度,缩放的依据 323 | Inline inline = imagePart.createImageInline(null, null, 0, 1, false, 800); 324 | // 获取该书签的父级段落 325 | P p = (P) (bm.getParent()); 326 | ObjectFactory factory = new ObjectFactory(); 327 | // 新建一个Run 328 | R run = factory.createR(); 329 | // drawing 画布 330 | Drawing drawing = factory.createDrawing(); 331 | drawing.getAnchorOrInline() 332 | .add(inline); 333 | run.getContent() 334 | .add(drawing); 335 | p.getContent() 336 | .add(run); 337 | } 338 | } 339 | } 340 | 341 | 342 | /** 343 | * 获取模板中的表格 344 | * 345 | * @param tables 346 | * @param templateKey 347 | * @return 348 | * @throws Docx4JException 349 | * @throws JAXBException 350 | */ 351 | private static Tbl getTemplateTable(List tables, String templateKey) throws Docx4JException, JAXBException { 352 | for (Object tbl : tables) { 353 | List textElements = getAllElementFromObject(tbl, Text.class); 354 | for (Object text : textElements) { 355 | Text textElement = (Text) text; 356 | if (textElement.getValue() != null && textElement.getValue().equals(templateKey)) 357 | return (Tbl) tbl; 358 | } 359 | } 360 | return null; 361 | } 362 | 363 | 364 | /** 365 | * @param content 366 | * @Description: 追加段落内容 367 | */ 368 | public static void appendParaRContent(P p, String content) { 369 | List texts = getAllElementFromObject(p, Text.class); 370 | if (texts.size() > 0) { 371 | Text textToReplace = (Text) texts.get(0); 372 | textToReplace.setValue(""); 373 | } 374 | if (content != null) { 375 | R run = new R(); 376 | p.getContent().add(run); 377 | String[] contentArr = content.split("\n"); 378 | Text text = new Text(); 379 | text.setSpace("preserve"); 380 | text.setValue(" " + contentArr[0]); 381 | run.getContent().add(text); 382 | 383 | for (int i = 1, len = contentArr.length; i < len; i++) { 384 | Br br = new Br(); 385 | run.getContent().add(br);// 换行 386 | text = new Text(); 387 | text.setSpace("preserve"); 388 | text.setValue(" " + contentArr[i]); 389 | run.getContent().add(text); 390 | } 391 | } 392 | } 393 | 394 | 395 | /** 396 | * docx文档转换为PDF 397 | * 398 | * @param wordMLPackage 399 | * @param pdfPath PDF文档存储路径 400 | * @throws Exception 401 | */ 402 | public static void convertDocxToPDF(WordprocessingMLPackage wordMLPackage, 403 | String pdfPath) 404 | throws Exception { 405 | //HashSet features = new HashSet<>(); 406 | //features.add(PP_PDF_APACHEFOP_DISABLE_PAGEBREAK_LIST_ITEM); 407 | //WordprocessingMLPackage process = Preprocess.process(wordMLPackage, features); 408 | 409 | FileOutputStream fileOutputStream = new FileOutputStream(pdfPath); 410 | Docx4J.toPDF(wordMLPackage, fileOutputStream); 411 | fileOutputStream.flush(); 412 | fileOutputStream.close(); 413 | 414 | /*FOSettings foSettings = Docx4J.createFOSettings(); 415 | foSettings.setWmlPackage(wordMLPackage); 416 | Docx4J.toFO(foSettings, fileOutputStream, Docx4J.FLAG_EXPORT_PREFER_XSL);*/ 417 | } 418 | 419 | 420 | /** 421 | * see 422 | * 允许你针对一个特定的类来搜索指定元素以及它所有的孩子,例如,你可以用它获取文档中所有的表格、表格中所有的行以及其它类似的操作 423 | * 424 | * @param obj 425 | * @param toSearch 426 | * @return 427 | */ 428 | private static List getAllElementFromObject(Object obj, Class toSearch) { 429 | List result = new ArrayList<>(); 430 | if (obj instanceof JAXBElement) obj = ((JAXBElement) obj).getValue(); 431 | 432 | if (obj.getClass().equals(toSearch)) 433 | result.add(obj); 434 | else if (obj instanceof ContentAccessor) { 435 | List children = ((ContentAccessor) obj).getContent(); 436 | for (Object child : children) { 437 | result.addAll(getAllElementFromObject(child, toSearch)); 438 | } 439 | } 440 | return result; 441 | } 442 | 443 | 444 | /** 445 | * 替换段落 446 | * 447 | * @param placeholder 448 | * @param textToAdd 449 | * @param template 450 | * @param addTo 451 | */ 452 | private static void replaceParagraph(String placeholder, String textToAdd, WordprocessingMLPackage template, ContentAccessor addTo) { 453 | // 1. get the paragraph 454 | List paragraphs = getAllElementFromObject(template.getMainDocumentPart(), P.class); 455 | 456 | P toReplace = null; 457 | for (Object p : paragraphs) { 458 | List texts = getAllElementFromObject(p, Text.class); 459 | for (Object t : texts) { 460 | Text content = (Text) t; 461 | if (content.getValue().equals(placeholder)) { 462 | toReplace = (P) p; 463 | break; 464 | } 465 | } 466 | } 467 | 468 | // we now have the paragraph that contains our placeholder: toReplace 469 | // 2. split into seperate lines 470 | String as[] = StringUtils.splitPreserveAllTokens(textToAdd, '\n'); 471 | 472 | for (String ptext : as) { 473 | // 3. copy the found paragraph to keep styling correct 474 | P copy = XmlUtils.deepCopy(toReplace); 475 | 476 | // replace the text elements from the copy 477 | List texts = getAllElementFromObject(copy, Text.class); 478 | if (texts.size() > 0) { 479 | Text textToReplace = (Text) texts.get(0); 480 | textToReplace.setValue(ptext); 481 | } 482 | 483 | // add the paragraph to the document 484 | addTo.getContent().add(copy); 485 | } 486 | 487 | // 4. remove the original one 488 | ((ContentAccessor) toReplace.getParent()).getContent().remove(toReplace); 489 | 490 | } 491 | } 492 | -------------------------------------------------------------------------------- /src/main/java/com/github/izhangzhihao/OfficeProducer/FileUtils.java: -------------------------------------------------------------------------------- 1 | package com.github.izhangzhihao.OfficeProducer; 2 | 3 | 4 | import java.io.*; 5 | 6 | 7 | public class FileUtils { 8 | 9 | private static final int BUFFER_SIZE = 8192; 10 | 11 | public static long copy(InputStream source, OutputStream sink) 12 | throws IOException { 13 | long nread = 0L; 14 | byte[] buf = new byte[BUFFER_SIZE]; 15 | int n; 16 | while ((n = source.read(buf)) > 0) { 17 | sink.write(buf, 0, n); 18 | nread += n; 19 | } 20 | return nread; 21 | } 22 | 23 | /** 24 | * 从InputStream获取File 25 | * 26 | * @param ins 27 | * @param file 28 | * @throws IOException 29 | */ 30 | public static void inputStreamToFile(InputStream ins, File file) throws IOException { 31 | OutputStream os = new FileOutputStream(file); 32 | int bytesRead = 0; 33 | byte[] buffer = new byte[8192]; 34 | while ((bytesRead = ins.read(buffer, 0, 8192)) != -1) { 35 | os.write(buffer, 0, bytesRead); 36 | } 37 | os.close(); 38 | ins.close(); 39 | } 40 | 41 | } 42 | -------------------------------------------------------------------------------- /src/main/java/com/github/izhangzhihao/OfficeProducer/ListUtils.java: -------------------------------------------------------------------------------- 1 | package com.github.izhangzhihao.OfficeProducer; 2 | 3 | 4 | import java.util.List; 5 | 6 | public class ListUtils { 7 | /** 8 | * 判断一个List是否是NULL或者是空 9 | * 10 | * @param list 要判断的List 11 | * @return 结果 12 | */ 13 | public static boolean isNullOrEmpty(final List list) { 14 | return list == null || list.isEmpty(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/main/resources/Template/10.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izhangzhihao/OfficeProducer/64fd830e379a83075aa3afaa1002bbb512ecb425/src/main/resources/Template/10.docx -------------------------------------------------------------------------------- /src/main/resources/Template/2.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izhangzhihao/OfficeProducer/64fd830e379a83075aa3afaa1002bbb512ecb425/src/main/resources/Template/2.doc -------------------------------------------------------------------------------- /src/main/resources/images/33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izhangzhihao/OfficeProducer/64fd830e379a83075aa3afaa1002bbb512ecb425/src/main/resources/images/33.png -------------------------------------------------------------------------------- /src/main/resources/logback.groovy: -------------------------------------------------------------------------------- 1 | import ch.qos.logback.classic.PatternLayout 2 | import ch.qos.logback.core.ConsoleAppender 3 | 4 | scan("60 seconds") 5 | appender("stdOut", ConsoleAppender) { 6 | layout(PatternLayout) { 7 | pattern = "%d{HH:mm:ss.SSS} [%thread] %-5level %logger{40} - %msg%n" 8 | } 9 | } 10 | 11 | root(INFO, ["stdOut"]) -------------------------------------------------------------------------------- /src/test/java/com/github/izhangzhihao/OfficeProducer/DocProducerTest.java: -------------------------------------------------------------------------------- 1 | package com.github.izhangzhihao.OfficeProducer; 2 | 3 | import org.junit.Test; 4 | 5 | import java.util.HashMap; 6 | 7 | import static com.github.izhangzhihao.OfficeProducer.DocProducer.CreateDocFromTemplate; 8 | 9 | /** 10 | * DocProducer测试类 11 | */ 12 | public class DocProducerTest { 13 | @Test 14 | public void CreateDocFromTemplateTest() throws Exception { 15 | String templatePath = "/Template/2.doc"; 16 | HashMap parameters = new HashMap<>(); 17 | parameters.put("colour", "green"); 18 | parameters.put("icecream", "chocolate"); 19 | //HashMap imageParameters = new HashMap<>(); 20 | //String prefix = "D:/头像/"; 21 | //imageParameters.put("bookmark", prefix + "/33.png"); 22 | CreateDocFromTemplate(templatePath, parameters, "D:/Desktop/test.doc"); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /src/test/java/com/github/izhangzhihao/OfficeProducer/DocxProducerTest.java: -------------------------------------------------------------------------------- 1 | package com.github.izhangzhihao.OfficeProducer; 2 | 3 | import org.docx4j.model.fields.merge.DataFieldName; 4 | import org.junit.Test; 5 | 6 | import java.util.HashMap; 7 | import java.util.UUID; 8 | 9 | import static com.github.izhangzhihao.OfficeProducer.DocxProducer.CreateEncryptDocxFromTemplate; 10 | 11 | /** 12 | * DocxProducer测试类 13 | */ 14 | @SuppressWarnings("SpellCheckingInspection") 15 | public class DocxProducerTest { 16 | @Test 17 | public void CreateEncryptDocxFromTemplateTest() throws Exception { 18 | String templatePath = "/Template/10.docx"; 19 | HashMap parameters = new HashMap<>(); 20 | parameters.put("colour", "绿色"); 21 | parameters.put("icecream", "巧克力"); 22 | HashMap imageParameters = new HashMap<>(); 23 | String prefix = "D:/头像/"; 24 | imageParameters.put("bookmark", prefix + "/33.png"); 25 | 26 | HashMap map = new HashMap<>(); 27 | map.put(new DataFieldName("projectName"), "校级项目"); 28 | 29 | HashMap paragraphParameters = new HashMap<>(); 30 | paragraphParameters.put("test", "第三方公司的发生地方\n第三方风格的鬼地方个地方\n规划法国恢复规划法规\nsdfsf电饭锅电饭锅电饭锅地方个dfs"); 31 | 32 | 33 | CreateEncryptDocxFromTemplate(templatePath, parameters, paragraphParameters, imageParameters, "D:/Desktop/test.docx", UUID.randomUUID().toString()); 34 | } 35 | } 36 | --------------------------------------------------------------------------------