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

На нашем сайте вы можете скачать и просмотреть онлайн доклад-презентацию на тему 6. Java basic I/O 5. Java and XML абсолютно бесплатно. Урок-презентация на эту тему содержит всего 17 слайдов. Все материалы созданы в программе PowerPoint и имеют формат ppt или же pptx. Материалы и темы для презентаций взяты из открытых источников и загружены их авторами, за качество и достоверность информации в них администрация сайта не отвечает, все права принадлежат их создателям. Если вы нашли то, что искали, отблагодарите авторов - поделитесь ссылкой в социальных сетях, а наш сайт добавьте в закладки.



Оцените!
Оцените презентацию от 1 до 5 баллов!
  • Тип файла:
    ppt / pptx (powerpoint)
  • Всего слайдов:
    17 слайдов
  • Для класса:
    1,2,3,4,5,6,7,8,9,10,11
  • Размер файла:
    109.50 kB
  • Просмотров:
    57
  • Скачиваний:
    0
  • Автор:
    неизвестен



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

№1 слайд
. Basic I O . Java and XML
Содержание слайда: 6. Basic I/O 5. Java and XML

№2 слайд
Why XML? XML is a very useful
Содержание слайда: 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 lt ?xml version
Содержание слайда: XML Example <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">   <modelVersion>4.0.0</modelVersion> <parent>   <groupId>webapp.sample</groupId>   <artifactId>web-parent</artifactId>   <version>1.0-SNAPSHOT</version>   </parent>   <artifactId>web-app</artifactId>   <packaging>jar</packaging>   <name>Web Demo - Application UI project</name> </project>

№4 слайд
What is an XML? Extensible
Содержание слайда: 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
Содержание слайда: The Structure of an XML Document An XML document should start with a header such as <?xml version="1.0"?> or <?xml version="1.0" encoding="UTF-8"?> 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 lt ?xml version
Содержание слайда: XML Example <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">   <modelVersion>4.0.0</modelVersion> <parent>   <groupId>webapp.sample</groupId>   <artifactId>web-parent</artifactId>   <version>1.0-SNAPSHOT</version>   </parent>   <artifactId>web-app</artifactId>   <packaging>jar</packaging>   <name>Web Demo - Application UI project</name> </project>

№7 слайд
Element A logical document
Содержание слайда: 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: <modelVersion>4.0.0</modelVersion> <line-break />

№8 слайд
Element continued An element
Содержание слайда: Element (continued) An element can contain child elements, text, or both: <parent>   <groupId>webapp.sample</groupId>   <artifactId>web-parent</artifactId>   <version>1.0-SNAPSHOT</version>   </parent>

№9 слайд
Attributes A markup construct
Содержание слайда: Attributes A markup construct consisting of a name/value pair that exists within a start-tag or empty-element tag: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

№10 слайд
Parsing an XML Document To
Содержание слайда: 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
Содержание слайда: 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
Содержание слайда: 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 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="http://www.w3.org/1999/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
Содержание слайда: Default Namespace It is also possible to declare a default namespace: xmlns="http://www.w3.org/1999/xhtml" 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 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
Содержание слайда: 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 http docs.oracle.com
Содержание слайда: Manuals http://docs.oracle.com/javase/tutorial/jaxp/index.html http://docs.oracle.com/javase/tutorial/jaxb/index.html

Скачать все slide презентации 6. Java basic I/O 5. Java and XML одним архивом: