如下的XML代码位于xl文件夹的workbook.xml文件中
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
<?xml version="1.0" encoding="utf-8"?> <workbook xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main" xmlns:r="http://schemas.openxmlformats.org/officeDocument/2006/relationships"> <fileVersion appName="xl" lastEdited="5" lowestEdited="5" rupBuild="9303"/> <workbookPr defaultThemeVersion="124226"/> <workbookProtection workbookPassword="CC40" revisionsPassword="CC40" lockStructure="1" lockRevision="1"/> <bookViews> <workbookView xWindow="480" yWindow="120" windowWidth="19440" windowHeight="12585"/> </bookViews> <sheets> <sheet name="Sheet1" sheetId="1" r:id="rId1"/> </sheets> <calcPr calcId="145621"/> <customWorkbookViews> <customWorkbookView name="xyf" guid="{D5638B0B-396C-4CF2-9C8E-4E6C6243762C}" mergeInterval="0" personalView="1" maximized="1" windowWidth="1276" windowHeight="791" activeSheetId="1"/> </customWorkbookViews> </workbook> |
当用如下的代码进行解析:
[crayon-600666b40ff9514[……]