File: package.html

package info (click to toggle)
xml-commons-external 1.4.01-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,484 kB
  • sloc: java: 12,856; xml: 72; makefile: 16
file content (30 lines) | stat: -rw-r--r-- 1,581 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>javax.xml.transform.stream</title>
</head>
<body>
<p>This package implements stream- and URI- specific transformation APIs.
	 </p>
<p>The {@link javax.xml.transform.stream.StreamSource} class
	 provides methods for specifying {@link java.io.InputStream} input,
	 {@link java.io.Reader} input, and URL input in the form of strings. Even
	 if an input stream or reader is specified as the source,
	 {@link javax.xml.transform.stream.StreamSource#setSystemId} should still
	 be called, so that the transformer can know from where it should resolve
	 relative URIs. The public identifier is always optional: if the application
	 writer includes one, it will be provided as part of the
	 {@link javax.xml.transform.SourceLocator} information.</p>
<p>The {@link javax.xml.transform.stream.StreamResult} class
	 provides methods for specifying {@link java.io.OutputStream},
	 {@link java.io.Writer}, or an output system ID, as the output of the
	 transformation result.</p>
<p>Normally streams should be used rather than readers or writers, for
	 both the Source and Result, since readers and writers already have the encoding
	 established to and from the internal Unicode format. However, there are times
	 when it is useful to write to a character stream, such as when using a
	 StringWriter in order to write to a String, or in the case of reading source
	 XML from a StringReader.</p>
</body>
</html>