mirror of
https://gitee.com/kekingcn/file-online-preview.git
synced 2026-03-14 21:23:47 +08:00
调整项目模块,jodconverter-core重命名为office-plugin。jdocnverter-web重命名为server
This commit is contained in:
@@ -0,0 +1,74 @@
|
||||
//
|
||||
// JODConverter - Java OpenDocument Converter
|
||||
// Copyright 2004-2012 Mirko Nasato and contributors
|
||||
//
|
||||
// JODConverter is Open Source software, you can redistribute it and/or
|
||||
// modify it under either (at your option) of the following licenses
|
||||
//
|
||||
// 1. The GNU Lesser General Public License v3 (or later)
|
||||
// -> http://www.gnu.org/licenses/lgpl-3.0.txt
|
||||
// 2. The Apache License, Version 2.0
|
||||
// -> http://www.apache.org/licenses/LICENSE-2.0.txt
|
||||
//
|
||||
package org.artofsolving.jodconverter;
|
||||
|
||||
import static org.artofsolving.jodconverter.office.OfficeUtils.cast;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
|
||||
import org.artofsolving.jodconverter.document.DocumentFamily;
|
||||
import org.artofsolving.jodconverter.document.DocumentFormat;
|
||||
import org.artofsolving.jodconverter.office.OfficeException;
|
||||
|
||||
import com.sun.star.lang.XComponent;
|
||||
import com.sun.star.util.XRefreshable;
|
||||
|
||||
public class StandardConversionTask extends AbstractConversionTask {
|
||||
|
||||
private final DocumentFormat outputFormat;
|
||||
|
||||
private Map<String,?> defaultLoadProperties;
|
||||
private DocumentFormat inputFormat;
|
||||
|
||||
public StandardConversionTask(File inputFile, File outputFile, DocumentFormat outputFormat) {
|
||||
super(inputFile, outputFile);
|
||||
this.outputFormat = outputFormat;
|
||||
}
|
||||
|
||||
public void setDefaultLoadProperties(Map<String, ?> defaultLoadProperties) {
|
||||
this.defaultLoadProperties = defaultLoadProperties;
|
||||
}
|
||||
|
||||
public void setInputFormat(DocumentFormat inputFormat) {
|
||||
this.inputFormat = inputFormat;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void modifyDocument(XComponent document) throws OfficeException {
|
||||
XRefreshable refreshable = cast(XRefreshable.class, document);
|
||||
if (refreshable != null) {
|
||||
refreshable.refresh();
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Map<String,?> getLoadProperties(File inputFile) {
|
||||
Map<String,Object> loadProperties = new HashMap<String,Object>();
|
||||
if (defaultLoadProperties != null) {
|
||||
loadProperties.putAll(defaultLoadProperties);
|
||||
}
|
||||
if (inputFormat != null && inputFormat.getLoadProperties() != null) {
|
||||
loadProperties.putAll(inputFormat.getLoadProperties());
|
||||
}
|
||||
return loadProperties;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected Map<String,?> getStoreProperties(File outputFile, XComponent document) {
|
||||
DocumentFamily family = OfficeDocumentUtils.getDocumentFamily(document);
|
||||
return outputFormat.getStoreProperties(family);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user