org.docx4j.samples.ConvertOutHtml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docx4j Show documentation
Show all versions of docx4j Show documentation
docx4j is a library which helps you to work with the Office Open
XML file format as used in docx
documents, pptx presentations, and xlsx spreadsheets.
/*
* Copyright 2007-2008, Plutext Pty Ltd.
*
* This file is part of docx4j.
docx4j is licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.docx4j.samples;
import java.io.OutputStream;
import org.docx4j.convert.out.Containerization;
import org.docx4j.convert.out.html.AbstractHtmlExporter;
import org.docx4j.convert.out.html.HtmlExporterNG2;
import org.docx4j.convert.out.html.SdtWriter;
import org.docx4j.convert.out.html.TagSingleBox;
import org.docx4j.convert.out.html.AbstractHtmlExporter.HtmlSettings;
import org.docx4j.openpackaging.packages.WordprocessingMLPackage;
/**
* This sample uses XSLT (and Xalan) to
* produce HTML output. (There is also
* HtmlExporterNonXSLT for environments where
* that is not desirable eg Android).
*
* If the source docx contained a WMF, that
* will get converted to inline SVG. In order
* to see the SVG in your browser, you'll need
* to rename the file to .xml or serve
* it with MIME type application/xhtml+xml
*
*/
public class ConvertOutHtml extends AbstractSample {
// Config for non-command line version
static {
//inputfilepath = System.getProperty("user.dir") + "/docs/Docx4j_GettingStarted.xml";
inputfilepath = System.getProperty("user.dir") + "/sample-docs/word/sample-docx.xml";
save = true;
}
static boolean save;
public static void main(String[] args)
throws Exception {
try {
getInputFilePath(args);
} catch (IllegalArgumentException e) {
}
System.out.println(inputfilepath);
WordprocessingMLPackage wordMLPackage = WordprocessingMLPackage.load(new java.io.File(inputfilepath));
// HTML exporter setup
AbstractHtmlExporter exporter = new HtmlExporterNG2();
// .. the HtmlSettings object
HtmlSettings htmlSettings = new HtmlSettings();
htmlSettings.setImageDirPath(inputfilepath + "_files");
htmlSettings.setImageTargetUri(inputfilepath.substring(inputfilepath.lastIndexOf("/")+1)
+ "_files");
htmlSettings.setUserBodyTop("TOP!
");
htmlSettings.setUserBodyTail("TAIL!
");
// Sample sdt tag handler (tag handlers insert specific
// html depending on the contents of an sdt's tag).
// This will only have an effect if the sdt tag contains
// the string @class=XXX
// SdtWriter.registerTagHandler("@class", new TagClass() );
SdtWriter.registerTagHandler(Containerization.TAG_BORDERS, new TagSingleBox() );
SdtWriter.registerTagHandler(Containerization.TAG_SHADING, new TagSingleBox() );
// exporter writes to a Result object.
OutputStream os;
if (save) {
os = new java.io.FileOutputStream(inputfilepath + ".html");
} else {
os = System.out;
}
javax.xml.transform.stream.StreamResult result = new javax.xml.transform.stream.StreamResult(os);
// OK, do it
exporter.html(wordMLPackage, result, htmlSettings);
if (save) {
System.out.println("Saved: " + inputfilepath + ".html using " + exporter.getClass().getName() );
}
}
}