org.ttzero.excel.manager.docProps.App Maven / Gradle / Ivy
/*
* Copyright (c) 2017, [email protected] All Rights Reserved.
*
* 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.ttzero.excel.manager.docProps;
import org.dom4j.Element;
import org.dom4j.Namespace;
import org.dom4j.QName;
import org.ttzero.excel.manager.TopNS;
import java.util.List;
import java.util.Map;
import static org.ttzero.excel.util.StringUtil.isEmpty;
/**
* App属性,除{@code company}属性外其余属性均由{@link org.ttzero.excel.entity.Workbook}生成,
* 外部不要随意修改否则将导致不可预期的异常。
*
* @author guanquan.wang on 2017/9/21.
*/
@TopNS(prefix = {"", "vt"}, uri = {"http://schemas.openxmlformats.org/officeDocument/2006/extended-properties"
, "http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes"}, value = "Properties")
public class App extends XmlEntity {
/**
* 指定由哪个App生成或打开
*/
private String application;
// /**
// * 是否加密,当前不支持加密
// */
// @SuppressWarnings("unused")
// private int docSecurity;
@SuppressWarnings("unused")
private boolean scaleCrop;
/**
* 公司名,可用于防伪,通过鼠标右建->详细属性查看
*/
private String company;
@SuppressWarnings("unused")
private boolean linksUpToDate;
@SuppressWarnings("unused")
private boolean sharedDoc;
@SuppressWarnings("unused")
private boolean hyperlinksChanged;
/**
* App版本,对应{@link #application}
*/
private String appVersion;
/**
* 工作表名集合
*/
private List titlesOfParts;
public void setTitlePards(List list) {
titlesOfParts = list;
}
public void setApplication(String application) {
this.application = application;
}
// public void setDocSecurity(int docSecurity) {
// this.docSecurity = docSecurity;
// }
public void setScaleCrop(boolean scaleCrop) {
this.scaleCrop = scaleCrop;
}
public void setCompany(String company) {
this.company = company;
}
public void setLinksUpToDate(boolean linksUpToDate) {
this.linksUpToDate = linksUpToDate;
}
public void setSharedDoc(boolean sharedDoc) {
this.sharedDoc = sharedDoc;
}
public void setHyperlinksChanged(boolean hyperlinksChanged) {
this.hyperlinksChanged = hyperlinksChanged;
}
/**
* Setting the app version, it must not be null
*
* @param appVersion the app version
*/
public void setAppVersion(String appVersion) {
if (isEmpty(appVersion)) {
this.appVersion = "1.0.0";
} else {
// Filter other character but number and `.`
char[] chars = appVersion.toCharArray();
int i = 0, n = 0;
for (int j = 0; j < chars.length; j++) {
if (chars[j] >= '0' && chars[j] <= '9')
chars[i++] = chars[j];
else if (chars[j] == '.' && i > 0 && chars[i - 1] != '.' && n < 2) {
chars[i++] = chars[j];
n++;
}
else break;
}
this.appVersion = i > 0 ? new String(chars, 0, chars[i - 1] != '.' ? i : i - 1) : "1.0.0";
}
}
public String getApplication() {
return application;
}
public String getCompany() {
return company;
}
public String getAppVersion() {
return appVersion;
}
@Override
void toDom(Element rootElement, Map namespaceMap) {
rootElement.addElement("Application").addText(application);
rootElement.addElement("AppVersion").addText(appVersion);
if (company != null) rootElement.addElement("Company").addText(company);
rootElement.addElement("DocSecurity").addText("0"); // 暂时不支持加密
rootElement.addElement("ScaleCrop").addText(Boolean.toString(scaleCrop));
rootElement.addElement("LinksUpToDate").addText(Boolean.toString(linksUpToDate));
rootElement.addElement("SharedDoc").addText(Boolean.toString(sharedDoc));
rootElement.addElement("HyperlinksChanged").addText(Boolean.toString(hyperlinksChanged));
Element titleVector = rootElement.addElement("TitlesOfParts").addElement(QName.get("vector", namespaceMap.get("vt")));
titleVector.addAttribute("size", Integer.toString(titlesOfParts.size())).addAttribute("baseType", "lpstr");
for (String title : titlesOfParts) {
titleVector.addElement(QName.get("lpstr", namespaceMap.get("vt"))).addText(title);
}
Element hpVector = rootElement.addElement("HeadingPairs").addElement(QName.get("vector", namespaceMap.get("vt")));
hpVector.addAttribute("size", "2").addAttribute("baseType", "variant");
hpVector.addElement(QName.get("variant", namespaceMap.get("vt"))).addElement(QName.get("lpstr", namespaceMap.get("vt"))).addText("工作表");
hpVector.addElement(QName.get("variant", namespaceMap.get("vt"))).addElement(QName.get("i4", namespaceMap.get("vt"))).addText(Integer.toString(titlesOfParts.size()));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy