XML and JSON Processing презентация
Содержание
- 2. XML XML (eXtensible Markup Language) has been used in the Java
- 3. <?xml version="1.0" encoding="UTF-8" ?> <?xml version="1.0" encoding="UTF-8" ?> <order id="1234" date="05/06/2013">
- 4. XSD XML Schema Definition (XSD) is an XML-based grammar declaration used
- 5. <?xml version="1.0" encoding="UTF-8" ?> <?xml version="1.0" encoding="UTF-8" ?> <xs:schema version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
- 6. Parsing with SAX and DOM The Document Object Model (DOM) API
- 7. Querying in XML XPath //content/order_line[unit_price>=20]/unit_price/text() XQuery for $orderLine in doc("order.xml")//content/order_line[@quantity>1] where
- 8. XSLT eXtensible Stylesheet Language Transformations (XSLT ) allows to transform an
- 9. JAXB Java Architecture for XML Binding (JAXB) allows developers to work
- 10. JSON JSON (JavaScript Object Notation) originated with JavaScript for representing simple
- 11. { { "order": { "id": "1234", "date": "05/06/2013", "customer": { "first_name":
- 12. JSON Processing javax.json.JsonObject javax.json.JsonArray javax.json.Json OR org.json.JSONObject org.json.JSONArray
- 13. To read Beginning Java EE 7. Chapter 12 (http://www.goodreads.com/book/show/18979704-beginning-java-ee-7)
- 14. Homework Please, select list of Persons (age > 30, name starts
- 15. Скачать презентацию






![Querying in XML
XPath
//content/order_line[unit_price>=20]/unit_price/text()
XQuery
for $orderLine in doc("order.xml")//content/order_line[@quantity>1]
where Querying in XML
XPath
//content/order_line[unit_price>=20]/unit_price/text()
XQuery
for $orderLine in doc("order.xml")//content/order_line[@quantity>1]
where](/documents_3/e659f3b1a566dd9dfd71ebee19c477d6/img6.jpg)






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