🗊 Презентация 6. Java basic I/O 5. Java and XML

Нажмите для полного просмотра!
6. Java basic I/O 5. Java and XML, слайд №1 6. Java basic I/O 5. Java and XML, слайд №2 6. Java basic I/O 5. Java and XML, слайд №3 6. Java basic I/O 5. Java and XML, слайд №4 6. Java basic I/O 5. Java and XML, слайд №5 6. Java basic I/O 5. Java and XML, слайд №6 6. Java basic I/O 5. Java and XML, слайд №7 6. Java basic I/O 5. Java and XML, слайд №8 6. Java basic I/O 5. Java and XML, слайд №9 6. Java basic I/O 5. Java and XML, слайд №10 6. Java basic I/O 5. Java and XML, слайд №11 6. Java basic I/O 5. Java and XML, слайд №12 6. Java basic I/O 5. Java and XML, слайд №13 6. Java basic I/O 5. Java and XML, слайд №14 6. Java basic I/O 5. Java and XML, слайд №15 6. Java basic I/O 5. Java and XML, слайд №16 6. Java basic I/O 5. Java and XML, слайд №17

Вы можете ознакомиться и скачать презентацию на тему 6. Java basic I/O 5. Java and XML. Доклад-сообщение содержит 17 слайдов. Презентации для любого класса можно скачать бесплатно. Если материал и наш сайт презентаций Mypresentation Вам понравились – поделитесь им с друзьями с помощью социальных кнопок и добавьте в закладки в своем браузере.

Слайды и текст этой презентации


Слайд 1


6. Basic I/O 5. Java and XML
Описание слайда:
6. Basic I/O 5. Java and XML

Слайд 2


Why XML? XML is a very useful technology for describing structured information XML tools make it easy to process and transform information XML has...
Описание слайда:
Why XML? XML is a very useful technology for describing structured information XML tools make it easy to process and transform information XML has employed as the base language for communication protocols XML is widely used as protocol language in Java EE APIs

Слайд 3


XML Example 4.0.0 webapp.sample web-parent 1.0-SNAPSHOT web-app jar Web Demo - Application UI project
Описание слайда:
XML Example 4.0.0 webapp.sample web-parent 1.0-SNAPSHOT web-app jar Web Demo - Application UI project

Слайд 4


What is an XML? Extensible Markup Language (XML) is a markup language that defines a set of rules for encoding documents in a format that is both...
Описание слайда:
What is an XML? Extensible Markup Language (XML) is a markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable It is a textual data format with strong support documents structure along with arbitrary data structures

Слайд 5


The Structure of an XML Document An XML document should start with a header such as or A header is optional, but it is highly recommended The body of...
Описание слайда:
The Structure of an XML Document An XML document should start with a header such as or A header is optional, but it is highly recommended The body of the XML document contains the root element (only one!), which can contain other elements (child elements)

Слайд 6


XML Example 4.0.0 webapp.sample web-parent 1.0-SNAPSHOT web-app jar Web Demo - Application UI project
Описание слайда:
XML Example 4.0.0 webapp.sample web-parent 1.0-SNAPSHOT web-app jar Web Demo - Application UI project

Слайд 7


Element A logical document component either begins with a start-tag and ends with a matching end-tag or consists only of an empty-element tag: 4.0.0
Описание слайда:
Element A logical document component either begins with a start-tag and ends with a matching end-tag or consists only of an empty-element tag: 4.0.0

Слайд 8


Element (continued) An element can contain child elements, text, or both: webapp.sample web-parent 1.0-SNAPSHOT
Описание слайда:
Element (continued) An element can contain child elements, text, or both: webapp.sample web-parent 1.0-SNAPSHOT

Слайд 9


Attributes A markup construct consisting of a name/value pair that exists within a start-tag or empty-element tag:
Описание слайда:
Attributes A markup construct consisting of a name/value pair that exists within a start-tag or empty-element tag:

Слайд 10


Parsing an XML Document To process an XML document, you need to parse it: read a file confirm that the file has the correct format break it up into...
Описание слайда:
Parsing an XML Document To process an XML document, you need to parse it: read a file confirm that the file has the correct format break it up into the constituent elements access those elements

Слайд 11


Java XML Parsers Tree parser - Document Object Model (DOM) that read an XML document into a tree structure. Streaming parser - Simple API for XML...
Описание слайда:
Java XML Parsers Tree parser - Document Object Model (DOM) that read an XML document into a tree structure. Streaming parser - Simple API for XML (SAX) that generate events as they read an XML document.

Слайд 12


XML namespace XML namespaces are used for providing uniquely named elements and attributes in an XML document A namespace name is a uniform resource...
Описание слайда:
XML namespace XML namespaces are used for providing uniquely named elements and attributes in an XML document A namespace name is a uniform resource identifier (URI) Typically, the URI chosen for the namespace of a given XML vocabulary describes a resource under the control of the author or organization defining the vocabulary

Слайд 13


Namespace declaration An XML namespace is declared using the reserved XML attribute xmlns or xmlns:prefix, the value of which must be a valid...
Описание слайда:
Namespace declaration An XML namespace is declared using the reserved XML attribute xmlns or xmlns:prefix, the value of which must be a valid namespace name: xmlns:xhtml=" Any element or attribute whose name starts with the prefix "xhtml:" is considered to be in the XHTML namespace

Слайд 14


Default Namespace It is also possible to declare a default namespace: xmlns=" In this case, any element without a namespace prefix is considered...
Описание слайда:
Default Namespace It is also possible to declare a default namespace: xmlns=" In this case, any element without a namespace prefix is considered to be in the XHTML namespace, if it or an ancestor has the above default namespace declaration Attributes are never subject to the default namespace

Слайд 15


Well-formed XML document Well-formed = correct syntax The begin, end, and empty-element tags that delimit the elements are correctly nested, with...
Описание слайда:
Well-formed XML document Well-formed = correct syntax The begin, end, and empty-element tags that delimit the elements are correctly nested, with none missing and none overlapping. The element tags are case-sensitive; the beginning and end tags must match exactly. There is a single "root" element that contains all the other elements

Слайд 16


Valid XML Document Valid = well-formed + semantic-correct Semantic is described with: Document Type Definition (DTD) or XML Schema definition (XSD)...
Описание слайда:
Valid XML Document Valid = well-formed + semantic-correct Semantic is described with: Document Type Definition (DTD) or XML Schema definition (XSD) Contains rules that explain how a document should be formed, by specifying the legal child elements and attributes for each element

Слайд 17


Manuals
Описание слайда:
Manuals



Теги Java basic
Похожие презентации
Mypresentation.ru
Загрузить презентацию