如何查看excel文件的XML格式
嗨有没有人知道如何查看Excel *.xlsx
文件的XMLforms? 谢谢
XLSX文件只是ZIP文件,所以使用你最喜欢的ZIP工具解压缩它们:)
以下程序适用于我:
- 将文件的扩展名从.xlsx更改为.zip
- 用winzip解压缩
你想要这样的东西(假设你想读取XML文件)?
XmlDocument doc = new XmlDocument(); //Load XML from the file into XmlDocument object doc.Load(Server.MapPath("~/YourXMLFile.xml")); XmlNode root = doc.DocumentElement; StringBuilder sb = new StringBuilder(); XmlNodeList nodeList = root.SelectNodes("Node"); //Loop through each node under the xml file foreach (XmlNode node in nodeList) { sb.Append(node.SelectSingleNode("YourNode").InnerText); } Response.Write(sb.ToString()); }