1 / 24

XML

XML. Is it an advanced data structure?. XML: What is it good for?. XML stands for e Xtensible Markup Language. XML is designed to transport and store data. XML is important to know, and very easy to learn.

Télécharger la présentation

XML

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. XML Is it an advanced data structure?

  2. XML: What is it good for? • XML stands for eXtensible Markup Language. • XML is designed to transport and store data. • XML is important to know, and very easy to learn. • XML is used in many aspects of web development, often to simplify data storage and sharing.

  3. XML Document Example <?xml version="1.0"?> <note>    <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget me this weekend!</body> </note>

  4. What is XML? • XML tags are not predefined. • You must define your own tags • XML is designed to be self-descriptive • XML is a W3C Recommendation

  5. The Difference Between XML and HTML • XML is not a replacement for HTML. • XML and HTML were designed with different goals: • XML was designed to transport and store data, with focus on what data is. • HTML was designed to display data, with focus on how data looks. • HTML is about displaying information, while XML is about carrying information.

  6. XML is Everywhere • It has been amazing to see how quickly the XML standard has developed, and how quickly a large number of software vendors has adopted the standard. • XML is now as important for the Web as HTML was to the foundation of the Web. • XML is everywhere. It is the most common tool for data transmissions between all sorts of applications, and is becoming more and more popular in the area of storing and describing information.

  7. XML Separates Data from HTML • If you need to display dynamic data in your HTML document, it will take a lot of work to edit the HTML each time the data changes. • With XML, data can be stored in separate XML files. This way you can concentrate on using HTML for layout and display, and be sure that changes in the underlying data will not require any changes to the HTML. • With a few lines of JavaScript, you can read an external XML file and update the data content of your HTML

  8. XML Simplifies Data Sharing • In the real world, computer systems and databases contain data in incompatible formats. • XML data is stored in plain text format. This provides a software- and hardware-independent way of storing data. • This makes it much easier to create data that different applications can share

  9. XML Simplifies Data Transport • With XML, data can easily be exchanged between incompatible systems • One of the most time-consuming challenges for developers is to exchange data between incompatible systems over the Internet • Exchanging data as XML greatly reduces this complexity, since the data can be read by different incompatible applications

  10. XML Simplifies Platform Changes • Upgrading to new systems (hardware or software platforms), is always very time consuming. Large amounts of data must be converted and incompatible data is often lost • XML data is stored in text format. This makes it easier to expand or upgrade to new operating systems, new applications, or new browsers, without losing data.

  11. XML Makes Your Data More Available • Since XML is independent of hardware, software and application, XML can make your data more available and useful. • Different applications can access your data, not only in HTML pages, but also from XML data sources • With XML, your data can be available to all kinds of "reading machines" (Handheld computers, voice machines, news feeds, etc), and make it more available for blind people, or people with other disabilities

  12. XML is Used to Create New Internet Languages • A lot of new Internet languages are created with XML • Here are some examples: • XHTML the latest version of HTML • WSDL for describing available web services • WAP and WML as markup languages for handheld devices • RSS languages for news feeds • RDF and OWL for describing resources and ontology • SMIL for describing multimedia for the web 

  13. The Future? If Future Developers Have Sense • Future applications will exchange their data in XML. • The future might give us word processors, spreadsheet applications and databases that can read each other's data in a pure text format, without any conversion utilities in between. • We can only pray that all the software vendors will agree.

  14. XML documents use a self-describing and simple syntax: <?xml version="1.0"?> <note>     <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget me this weekend!</body> </note>

  15. XML documents use a self-describing and simple syntax: The first line is the XML declaration. It defines the XML version (1.0) and the encoding used (ISO-8859-1 = Latin-1/West European character set). <?xml version="1.0"?> <note>     <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget me this weekend!</body> </note>

  16. XML documents use a self-describing and simple syntax: The next line describes the root element of the document (like saying: "this document is a note"): <?xml version="1.0"?> <note>     <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget me this weekend!</body> </note>

  17. XML documents use a self-describing and simple syntax: <?xml version="1.0"?> <note>     <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget me this weekend!</body> </note> The next 4 lines describe 4 child elements of the root (to, from, heading, and body):

  18. XML documents use a self-describing and simple syntax: <?xml version="1.0"?> <note>    <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget me this weekend!</body> </note> And finally the last line defines the end of the root element

  19. XML Documents Form a Tree Structure • XML documents must contain a root element. This element is "the parent" of all other elements. • The elements in an XML document form a document tree. • The tree starts at the root and branches to the lowest level of the tree. • All elements can have sub elements (child elements): <root>  <child>    <subchild>.....</subchild>  </child> </root> The terms parent, child, and sibling are used to describe the relationships between elements. Parent elements have children. Children on the same level are called siblings (brothers or sisters). All elements can have text content and attributes (just like in HTML).

  20. Tree Example - The image (right) represents one book in the XML (left) <bookstore>  <book category="COOKING”> <title lang="en">Everyday Italian</title> <author>Giada De Laurentiis</author> <year>2005</year> <price>30.00</price> </book> <book category="CHILDREN”> <title lang="en">Harry Potter</title> <author>J K. Rowling</author> <year>2005</year> <price>29.99</price> </book> <book category="WEB”> <title lang="en">Learning XML</title> <author>Erik T. Ray</author> <year>2003</year> <price>39.95</price> </book> </bookstore> The root element in the example is <bookstore>. All <book> elements in the document are contained within <bookstore>. The <book> element has 4 children: <title>,< author>, <year>, <price>.

  21. XML Parser • Most browsers have a built-in XML parser to read and manipulate XML. • The parser converts XML into a JavaScript accessible object (the XML Document Object Model).

  22. XML Parser References • http://sourceforge.net/projects/tinyxml/files/tinyxml/2.6.1/tinyxml_2_6_1.zip/download • Tutorial: http://www.grinninglizard.com/tinyxmldocs/tutorial0.html • Documentation: http://www.grinninglizard.com/tinyxmldocs/index.html

  23. Semester Project – Due May 3rd • Write a program that uses an XML parser to convert an XML file from one format to another using a data structure that you design. XML INPUT FILE YOUR DATA STRUCTURE XML OUTPUT FILE <assessment> <question weight=“4”> <text>Write the code that would declare a float variable without assigning this float variable an identifier. Place value 435.67 in this location in memory. </text> <answer weight=“4“ type=“long-answer“ > </answer> </question> <question weight="2"> <text> What is stored on an activation record? </text> <answer weight="2" type=“multichoice”> <choices> <choice>A) parameters </choice> <choice>B) local variables </choice> <choice>C) register values </choice> <choice>D) return address </choice> <choice>E) a, b, c, and d are all stored on the activation record. </choice> </choices> <AnswerKeys> <AnswerKey weight=“2”> E)a, b, c, and d are all stored on the activation record. </AnswerKey> </AnswerKeys> </answer> </question> </assessment> <assessment DueDate="01/13/2010 12:00 PM"> <question weight="4"> Write the code that would declare a float variable without assigning this float variable an identifier. Place value 435.67 in this location in memory. <answer weight="4"> <long-answer/> </answer> </question> <question weight="2"> What is stored on an activation record? <answer weight="2" key="E) a, b, c, and d are all stored on the activation record. "> <multichoice> <choice>A) parameters </choice> <choice>B) local variables </choice> <choice>C) register values </choice> <choice>D) return address </choice> <choice>E) a, b, c, and d are all stored on the activation record. </choice> </multichoice> </answer> </question> </assessment> P A R S E R class Assessment { public: Question questions[]; ….. W R I T E R

  24. Root element <assessment> Element <question> Element <question> Attribute “tags” … Attribute “weight” … Element <answer> Element <answer> Attribute “tags” Element <text> Attribute “type” Element <AnswerKeys> Element <AnswerKey> Attribute “weight” Element <AnswerKey> …

More Related