博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Lesson: Introduction to JAXP
阅读量:5922 次
发布时间:2019-06-19

本文共 1179 字,大约阅读时间需要 3 分钟。

The Java API for XML Processing (JAXP) is for processing XML data using applications written in the Java programming language. JAXP leverages the parser standards Simple API for XML Parsing (SAX) and Document Object Model (DOM) so that you can choose to parse your data as a stream of events or to build an object representation of it. JAXP also supports the Extensible Stylesheet Language Transformations (XSLT) standard, giving you control over the presentation of the data and enabling you to convert the data to other XML documents or to other formats, such as HTML. JAXP also provides namespace support, allowing you to work with DTDs that might otherwise have naming conflicts. Finally, as of version 1.4, JAXP implements the Streaming API for XML (StAX) standard.

Designed to be flexible, JAXP allows you to use any XML-compliant(顺从的;服从的;应允的) parser from within your application. It does this with what is called a pluggability(可插性) layer, which lets you plug in an implementation of the SAX or DOM API. The pluggability layer also allows you to plug in an XSL processor, letting you control how your XML data is displayed.

转载于:https://www.cnblogs.com/ghgyj/p/4020822.html

你可能感兴趣的文章
用python写一个workflow百度翻译插件
查看>>
动态配置LauncherActivity/根据不同资源文件生成apk
查看>>
沸点2.0更新,“有趣”又“有料”
查看>>
typescript 基础
查看>>
堆和栈
查看>>
wepy框架开发小程序文档
查看>>
java多数据源自动切花
查看>>
层叠等级和层叠上下文
查看>>
讲case | 小程序+零售+社交=轻松涨业绩?
查看>>
Driven by Tractor high-efficiency Peanut harvester for Farm Keeping Precautions
查看>>
必看的数据库使用规范
查看>>
自定义SpringMVC部分实现
查看>>
1024 科学计数法 (20 分)
查看>>
重学前端(三)
查看>>
13 个示例快速入门 JS 抽象语法树
查看>>
Android7.0机型适配
查看>>
React中的受控组件和非受控组件学习总结
查看>>
一键脚本搭建即用即销临时邮箱
查看>>
scroll 事件不会冒泡
查看>>
项目改版上线前的团队心态管理
查看>>