Xml 读书笔记:What's xml
摘要:1,xml: 数据越复杂,处理就越复杂,当应用程序越复杂,xml越能发挥作用。2,xml文档是利用xml解析器来解析xml的,因此在程序开发中,可以先利用xml解析器来解析xml,以来承担应用程序的压力。 3,修改xml文档的结构时,并不需要去修改程序,这样少了很多额外的麻烦。4.xml是可扩展标记语言,意味着任何人可以使用它们想用的标签来定义xml文档。 5.xml词汇,包含SVG,MathML,CML,比如CML全程为chemical Markup language,用来收集一些跟化学相关的信息。比如,MathML用来收集一些 跟数学相关的信息,同时我们也可以自己创建以及的词汇。 6.h.
阅读全文
posted @
2011-08-20 14:04
wtq
阅读(271)
推荐(0) 编辑
XML xml spy 5.0 注册码
摘要:XML SPY 5.0注册码断网注册,不要在线注册user: nAcercomp: Stuserial: PkNN7D-Ee281s-qCAt2s-4Fss37-8P7M2C-HBFDH3version| name|company| key suite(all) et8 et8 a700NE-t6cm3A-Nc8bq9-710000-4g6qU2 entprise et8 et8 a700NE-t6cm3A-710000-f3N512 professional et8 et8 a700NE-9aF7cB-710000-a7A512 home et8 et8 a700NE-4bubPA-7100
阅读全文
posted @
2011-08-20 10:58
wtq
阅读(7611)
推荐(1) 编辑
XML 读取xml文件的各个节点
摘要:1,读取整个xml文件,包括子元素,文本,属性。代码如下:View Code 1usingSystem;2usingSystem.Xml;34namespaceReadXMLfromFile5{6///<summary>7///SummarydescriptionforClass1.8///</summary>9classClass110{11staticvoidMain(string[]args)12{13XmlTextReaderreader=newXmlTextReader("books.xml");14while(reader.Read())
阅读全文
posted @
2011-08-19 00:16
wtq
阅读(290)
推荐(0) 编辑
XML 读取xml文件的内容显示到控制台
摘要:1,读取xml文件的内容显示到控制台 View Code 1stringfileName="friend.xml";2XmlDocumentdoc=newXmlDocument();3//创建一个XmlTextReader对象,读取XML数据4XmlTextReaderreader=newXmlTextReader(string.Format("{0}\\{1}",Environment.CurrentDirectory.ToString(),fileName));5reader.Read();67//载入XmlTextReader类的对象8doc.Lo
阅读全文
posted @
2011-08-19 00:04
wtq
阅读(917)
推荐(0) 编辑
xml 通讯录
摘要:1,xml通讯录代码:代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--1<?xmlversion="1.0"encoding="UTF-8"?>2<!DOCTYPE通讯录SYSTEM"C:\xml\test2\classmate1...
阅读全文
posted @
2010-04-20 11:35
wtq
阅读(2186)
推荐(0) 编辑