Referenzquelle https://www.csync.net/blog/pc/docxdoclet/
Führen Sie eine JAR-Datei mit einem Befehl in cmd aus und geben Sie eine Word-Datei aus.
Befehlsformat: javadoc.exe -private -encoding utf-8 -doclet doclet.docx.DocxDoclet -docletpath docxdoclet-1.0.jar -classpath docxdoclet-1.0.jar -sourcepath Quelldateipfad -file Ausgabedatei .docx -font1 "Meiryo UI" - font2 "Consolas" -title Title -subtitle Title Supplement -version Version -company Publisher -copyright Copyright Footer Display Package Name
Befehlsbeispiel: javadoc.exe -private -encoding utf-8 -doclet doclet.docx.DocxDoclet -docletpath C: \ doxdoclet-1.0.jar -classpath C: \ doxxdoclet-1.0.jar -sourcepath C: \ workspace \ sampleproject \ src \ -file C: \ Ausgabedatei .docx -font1 "Meiryo UI" -font2 "Consolas" -title Beispielsystem -subtitle Subsystemname -version Version 1.0 -company Publisher -copyright "Copyright c 2019 licb Alle Rechte vorbehalten." C: Arbeitsbereich \ ... log4j \ *. java
// Fügen Sie für jede Zeile einen Zeilenumbruch ein
// update start
// paragraphs[i] = paragraphs[i].replaceAll("\.\s+", ".\n");
// paragraphs[i] = paragraphs[i].replaceAll("。\s*", "。\n");
paragraphs[i] = paragraphs[i].replaceAll("
", "\n");
paragraphs[i] = paragraphs[i].replaceAll("
", "\n");
paragraphs[i] = paragraphs[i].replaceAll("
Recommended Posts