Java Doc for XmlCharsetDetector.java in  » GIS » GeoServer » org » geoserver » ows » util » 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 » GIS » GeoServer » org.geoserver.ows.util 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.geoserver.ows.util.XmlCharsetDetector

XmlCharsetDetector
public class XmlCharsetDetector (Code)
Provides a methods that can be used to detect charset of some XML document and (optionally) return a reader that is aware of this charset and can correctly decode document's data.


Field Summary
protected static  LoggerLOGGER
    


Method Summary
public static  ReadercreateReader(InputStream istream, EncodingInfo encInfo)
     Creates a new reader on top of the given InputStream using existing (external) encoding information.
public static  ReadergetCharsetAwareReader(InputStream istream, EncodingInfo encInfo)
     Based on Xerces-J code, this method will try its best to return a reader which is able to decode content of incoming XML document properly.
public static  ReadergetCharsetAwareReader(InputStream istream)
     Use this variant when you aren't interested in encoding data, and just want to get a suitable reader for incoming request.
public static  EncodingInfogetEncodingName(byte[] b4, int count)
     Returns the IANA encoding name that is auto-detected from the bytes specified, with the endian-ness of that encoding where appropriate.
protected static  StringgetXmlEncoding(Reader reader)
     Gets the encoding of the xml request made to the dispatcher.

Field Detail
LOGGER
protected static Logger LOGGER(Code)





Method Detail
createReader
public static Reader createReader(InputStream istream, EncodingInfo encInfo) throws IllegalArgumentException, UnsupportedEncodingException(Code)
Creates a new reader on top of the given InputStream using existing (external) encoding information. Unlike getCharsetAwareReader, this method never tries to detect charset or encoding scheme of InputStream's data. This also means that it must be provided with valid EncodingInfo instance, which may be obtained, for example, from previous getCharsetAwareReader(InputStream, EncodingInfo) call.
Parameters:
  istream - byte-stream containing textual (presumably XML) data
Parameters:
  encInfo - correctly initialized object which holds information ofthe above byte-stream's contents charset.
throws:
  IllegalArgumentException - if charset name is not specified
throws:
  UnsupportedEncodingException - in cases when specified charset isnot supported by platform or due to invalid byte order forISO-10646-UCS-2|4 charsets.



getCharsetAwareReader
public static Reader getCharsetAwareReader(InputStream istream, EncodingInfo encInfo) throws IOException, UnsupportedCharsetException(Code)
Based on Xerces-J code, this method will try its best to return a reader which is able to decode content of incoming XML document properly. To achieve this goal, it first infers general encoding scheme of the above document and then uses this information to extract actual charset from XML declaration. In any recoverable error situation default UTF-8 reader will be created.
Parameters:
  istream - Byte stream (most probably obtained withHttpServletRequest.getInputStreamthat gives access to XML document in question).
Parameters:
  encInfo - Instance of EncodingInfo where information aboutdetected charset will be stored. You can thenuse it, for example, to form a response encodedwith this charset.
throws:
  IOException - in case of any unrecoverable I/O errors.
throws:
  UnsupportedCharsetException - InputStreamReader'sconstructor will probably throw this exception ifinferred charset of XML document is not supported bycurrent JVM.



getCharsetAwareReader
public static Reader getCharsetAwareReader(InputStream istream) throws IOException, UnsupportedCharsetException(Code)
Use this variant when you aren't interested in encoding data, and just want to get a suitable reader for incoming request.
Parameters:
  istream - See getCharsetAwareReader(InputStream,EncodingInfo).



getEncodingName
public static EncodingInfo getEncodingName(byte[] b4, int count)(Code)
Returns the IANA encoding name that is auto-detected from the bytes specified, with the endian-ness of that encoding where appropriate. Note, that encoding obtained this way is only an encoding scheme of the request, i.e. step 1 of detection process. To learn the exact charset of the request data, you should also perform step 2 - read XML declaration and get the value of its encoding pseudoattribute.
Parameters:
  b4 - The first four bytes of the input.
Parameters:
  count - The number of bytes actually read. Instance of EncodingInfo incapsulating all encoding-related data.



getXmlEncoding
protected static String getXmlEncoding(Reader reader)(Code)
Gets the encoding of the xml request made to the dispatcher. This works by reading the temp file where we are storing the request, looking to match the header specified encoding that should be present on all xml files. This call should only be made after the temp file has been set. If no encoding is found, or if an IOError is encountered then null shall be returned.
Parameters:
  reader - This character stream is supposed to contain XML data(i.e. it should start with valid XML declaration). The encoding specified in the xml header read from the suppliedcharacter stream.



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.