使用 XmlMapCollection.Add 方法在工作簿中添加 XML 映射
Contents
[
Hide
]
可能的使用场景
Aspose.Cells提供XmlMapCollection.Add() 方法,您可以使用该方法将 XML 映射导入工作簿中。
使用 XmlMapCollection.Add 方法在工作簿中添加 XML 映射
以下示例代码使用[XmlMapCollection.Add()](https://reference.aspose.com/cells/java/com.aspose.cells/xmlmapcollection#add(java.lang.Object) 方法并将其另存为输出excel文件.屏幕截图显示了从示例.xml在输出 excel 文件中。
示例代码
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java | |
// The path to the documents directory. | |
String dataDir = Utils.getSharedDataDir(AddXMLMapInsideWorkbook.class) + "articles/"; | |
// Create workbook object | |
Workbook wb = new Workbook(); | |
// Add xml map found inside the sample.xml inside the workbook | |
wb.getWorksheets().getXmlMaps().add(dataDir + "sample.xml"); | |
// Save the workbook in xlsx format | |
wb.save(dataDir + "AddXMLMapInsideWorkbook_out.xlsx"); |