Java Doc for XmlReader.java in  » RSS-RDF » Rome » com » sun » syndication » io » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » RSS RDF » Rome » com.sun.syndication.io 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.io.Reader
      com.sun.syndication.io.XmlReader

XmlReader
public class XmlReader extends Reader (Code)
Character stream that handles (or at least attemtps to) all the necessary Voodo to figure out the charset encoding of the XML document within the stream.

IMPORTANT: This class is not related in any way to the org.xml.sax.XMLReader. This one IS a character stream.

All this has to be done without consuming characters from the stream, if not the XML parser will not recognized the document as a valid XML. This is not 100% true, but it's close enough (UTF-8 BOM is not handled by all parsers right now, XmlReader handles it and things work in all parsers).

The XmlReader class handles the charset encoding of XML documents in Files, raw streams and HTTP streams by offering a wide set of constructors.

By default the charset encoding detection is lenient, the constructor with the lenient flag can be used for an script (following HTTP MIME and XML specifications). All this is nicely explained by Mark Pilgrim in his blog, Determining the character encoding of a feed.


author:
   Alejandro Abdelnur




Constructor Summary
public  XmlReader(File file)
     Creates a Reader for a File.
public  XmlReader(InputStream is)
     Creates a Reader for a raw InputStream.
public  XmlReader(InputStream is, boolean lenient)
     Creates a Reader for a raw InputStream.
public  XmlReader(URL url)
     Creates a Reader using the InputStream of a URL.
public  XmlReader(URLConnection conn)
     Creates a Reader using the InputStream of a URLConnection.
public  XmlReader(InputStream is, String httpContentType)
     Creates a Reader using an InputStream an the associated content-type header.

First it checks if the stream has BOM.

public  XmlReader(InputStream is, String httpContentType, boolean lenient)
     Creates a Reader using an InputStream an the associated content-type header.

Method Summary
public  voidclose()
     Closes the XmlReader stream.
public  StringgetEncoding()
     Returns the charset encoding of the XmlReader.
public  intread(char[] buf, int offset, int len)
    


Constructor Detail
XmlReader
public XmlReader(File file) throws IOException(Code)
Creates a Reader for a File.

It looks for the UTF-8 BOM first, if none sniffs the XML prolog charset, if this is also missing defaults to UTF-8.

It does a lenient charset encoding detection, check the constructor with the lenient parameter for details.


Parameters:
  file - File to create a Reader from.
throws:
  IOException - thrown if there is a problem reading the file.




XmlReader
public XmlReader(InputStream is) throws IOException(Code)
Creates a Reader for a raw InputStream.

It follows the same logic used for files.

It does a lenient charset encoding detection, check the constructor with the lenient parameter for details.


Parameters:
  is - InputStream to create a Reader from.
throws:
  IOException - thrown if there is a problem reading the stream.




XmlReader
public XmlReader(InputStream is, boolean lenient) throws IOException, XmlReaderException(Code)
Creates a Reader for a raw InputStream.

It follows the same logic used for files.

If lenient detection is indicated and the detection above fails as per specifications it then attempts the following:

If the content type was 'text/html' it replaces it with 'text/xml' and tries the detection again.

Else if the XML prolog had a charset encoding that encoding is used.

Else if the content type had a charset encoding that encoding is used.

Else 'UTF-8' is used.

If lenient detection is indicated an XmlReaderException is never thrown.


Parameters:
  is - InputStream to create a Reader from.
Parameters:
  lenient - indicates if the charset encoding detection should be relaxed.
throws:
  IOException - thrown if there is a problem reading the stream.
throws:
  XmlReaderException - thrown if the charset encoding could not be determined according to the specs.




XmlReader
public XmlReader(URL url) throws IOException(Code)
Creates a Reader using the InputStream of a URL.

If the URL is not of type HTTP and there is not 'content-type' header in the fetched data it uses the same logic used for Files.

If the URL is a HTTP Url or there is a 'content-type' header in the fetched data it uses the same logic used for an InputStream with content-type.

It does a lenient charset encoding detection, check the constructor with the lenient parameter for details.


Parameters:
  url - URL to create a Reader from.
throws:
  IOException - thrown if there is a problem reading the stream of the URL.




XmlReader
public XmlReader(URLConnection conn) throws IOException(Code)
Creates a Reader using the InputStream of a URLConnection.

If the URLConnection is not of type HttpURLConnection and there is not 'content-type' header in the fetched data it uses the same logic used for files.

If the URLConnection is a HTTP Url or there is a 'content-type' header in the fetched data it uses the same logic used for an InputStream with content-type.

It does a lenient charset encoding detection, check the constructor with the lenient parameter for details.


Parameters:
  conn - URLConnection to create a Reader from.
throws:
  IOException - thrown if there is a problem reading the stream of the URLConnection.




XmlReader
public XmlReader(InputStream is, String httpContentType) throws IOException(Code)
Creates a Reader using an InputStream an the associated content-type header.

First it checks if the stream has BOM. If there is not BOM checks the content-type encoding. If there is not content-type encoding checks the XML prolog encoding. If there is not XML prolog encoding uses the default encoding mandated by the content-type MIME type.

It does a lenient charset encoding detection, check the constructor with the lenient parameter for details.


Parameters:
  is - InputStream to create the reader from.
Parameters:
  httpContentType - content-type header to use for the resolution of the charset encoding.
throws:
  IOException - thrown if there is a problem reading the file.




XmlReader
public XmlReader(InputStream is, String httpContentType, boolean lenient) throws IOException, XmlReaderException(Code)
Creates a Reader using an InputStream an the associated content-type header. This constructor is lenient regarding the encoding detection.

First it checks if the stream has BOM. If there is not BOM checks the content-type encoding. If there is not content-type encoding checks the XML prolog encoding. If there is not XML prolog encoding uses the default encoding mandated by the content-type MIME type.

If lenient detection is indicated and the detection above fails as per specifications it then attempts the following:

If the content type was 'text/html' it replaces it with 'text/xml' and tries the detection again.

Else if the XML prolog had a charset encoding that encoding is used.

Else if the content type had a charset encoding that encoding is used.

Else 'UTF-8' is used.

If lenient detection is indicated an XmlReaderException is never thrown.


Parameters:
  is - InputStream to create the reader from.
Parameters:
  httpContentType - content-type header to use for the resolution of the charset encoding.
Parameters:
  lenient - indicates if the charset encoding detection should be relaxed.
throws:
  IOException - thrown if there is a problem reading the file.
throws:
  XmlReaderException - thrown if the charset encoding could not be determined according to the specs.





Method Detail
close
public void close() throws IOException(Code)
Closes the XmlReader stream.


throws:
  IOException - thrown if there was a problem closing the stream.




getEncoding
public String getEncoding()(Code)
Returns the charset encoding of the XmlReader.

charset encoding.




read
public int read(char[] buf, int offset, int len) throws IOException(Code)



Fields inherited from java.io.Reader
protected Object lock(Code)(Java Doc)

Methods inherited from java.io.Reader
abstract public void close() throws IOException(Code)(Java Doc)
public void mark(int readAheadLimit) throws IOException(Code)(Java Doc)
public boolean markSupported()(Code)(Java Doc)
public int read(java.nio.CharBuffer target) throws IOException(Code)(Java Doc)
public int read() throws IOException(Code)(Java Doc)
public int read(char cbuf) throws IOException(Code)(Java Doc)
abstract public int read(char cbuf, int off, int len) throws IOException(Code)(Java Doc)
public boolean ready() throws IOException(Code)(Java Doc)
public void reset() throws IOException(Code)(Java Doc)
public long skip(long n) throws IOException(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.