类 | 描述 |
---|---|
StreamResult |
作为转换结果的持有人,可以是XML,纯文本,HTML或其他形式的标记。
|
StreamSource |
作为转换的持有人以XML标记流的形式来源。
|
该包实现流和URI特定的转换API。
StreamSource
类提供了以字符串形式指定InputStream
输入, Reader
输入和URL输入的方法。 即使输入流或读取器被指定为源, StreamSource.setSystemId(java.lang.String)
仍然应该叫,使变压器可以从那里应该可以解决相对URI知道。 公共标识符始终是可选的:如果应用程序作者包括一个,那么它将作为SourceLocator
信息的一部分提供。
所述StreamResult
类提供了用于指定方法OutputStream
, Writer
,或输出系统ID,作为变换结果的输出。
对于Source和Result来说,通常应该使用流,而不是读者或作者,因为读者和作者已经拥有和从内部Unicode格式建立的编码。 然而,有时写入字符流是有用的,例如当使用StringWriter来写入String时,或者从StringReader读取源XML的情况。
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.