/* ==================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You 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.apache.poi.xssf.usermodel.examples; import java.io.FileOutputStream; import java.io.IOException; import org.apache.poi.POIXMLProperties; import org.apache.poi.xssf.usermodel.XSSFWorkbook; /** * How to set extended and custom properties */ public class WorkbookProperties { public static void main(String[]args) throws IOException { XSSFWorkbook workbook = new XSSFWorkbook(); workbook.createSheet("Workbook Properties"); POIXMLProperties props = workbook.getProperties(); /** * Extended properties are a predefined set of metadata properties * that are specifically applicable to Office Open XML documents. * Extended properties consist of 24 simple properties and 3 complex properties stored in the * part targeted by the relationship of type */ POIXMLProperties.ExtendedProperties ext = props.getExtendedProperties(); ext.getUnderlyingProperties().setCompany("Apache Software Foundation"); ext.getUnderlyingProperties().setTemplate("XSSF"); /** * Custom properties enable users to define custom metadata properties. */ POIXMLProperties.CustomProperties cust = props.getCustomProperties(); cust.addProperty("Author", "John Smith"); cust.addProperty("Year", 2009); cust.addProperty("Price", 45.50); cust.addProperty("Available", true); FileOutputStream out = new FileOutputStream("workbook.xlsx"); workbook.write(out); out.close(); workbook.close(); } }