⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 xmlreader.html

📁 解析RSS工具源码
💻 HTML
📖 第 1 页 / 共 2 页
字号:
 <p> It does a lenient charset encoding detection, check the constructor with the lenient parameter for details. <p><P><DT><B>Parameters:</B><DD><CODE>file</CODE> - File to create a Reader from.<DT><B>Throws:</B><DD><CODE>java.io.IOException</CODE> - thrown if there is a problem reading the file.</DL><HR><A NAME="XmlReader(java.io.InputStream)"><!-- --></A><H3>XmlReader</H3><PRE>public <B>XmlReader</B>(java.io.InputStream&nbsp;is)          throws java.io.IOException</PRE><DL><DD>Creates a Reader for a raw InputStream. <p> It follows the same logic used for files. <p> It does a lenient charset encoding detection, check the constructor with the lenient parameter for details. <p><P><DT><B>Parameters:</B><DD><CODE>is</CODE> - InputStream to create a Reader from.<DT><B>Throws:</B><DD><CODE>java.io.IOException</CODE> - thrown if there is a problem reading the stream.</DL><HR><A NAME="XmlReader(java.io.InputStream, boolean)"><!-- --></A><H3>XmlReader</H3><PRE>public <B>XmlReader</B>(java.io.InputStream&nbsp;is,                 boolean&nbsp;lenient)          throws java.io.IOException,                 <A HREF="../../../../com/sun/syndication/io/XmlReaderException.html" title="class in com.sun.syndication.io">XmlReaderException</A></PRE><DL><DD>Creates a Reader for a raw InputStream. <p> It follows the same logic used for files. <p> If lenient detection is indicated and the detection above fails as per specifications it then attempts the following: <p> If the content type was 'text/html' it replaces it with 'text/xml' and tries the detection again. <p> Else if the XML prolog had a charset encoding that encoding is used. <p> Else if the content type had a charset encoding that encoding is used. <p> Else 'UTF-8' is used. <p> If lenient detection is indicated an XmlReaderException is never thrown. <p><P><DT><B>Parameters:</B><DD><CODE>is</CODE> - InputStream to create a Reader from.<DD><CODE>lenient</CODE> - indicates if the charset encoding detection should be relaxed.<DT><B>Throws:</B><DD><CODE>java.io.IOException</CODE> - thrown if there is a problem reading the stream.<DD><CODE><A HREF="../../../../com/sun/syndication/io/XmlReaderException.html" title="class in com.sun.syndication.io">XmlReaderException</A></CODE> - thrown if the charset encoding could not be determined according to the specs.</DL><HR><A NAME="XmlReader(java.net.URL)"><!-- --></A><H3>XmlReader</H3><PRE>public <B>XmlReader</B>(java.net.URL&nbsp;url)          throws java.io.IOException</PRE><DL><DD>Creates a Reader using the InputStream of a URL. <p> 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. <p> 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. <p> It does a lenient charset encoding detection, check the constructor with the lenient parameter for details. <p><P><DT><B>Parameters:</B><DD><CODE>url</CODE> - URL to create a Reader from.<DT><B>Throws:</B><DD><CODE>java.io.IOException</CODE> - thrown if there is a problem reading the stream of the URL.</DL><HR><A NAME="XmlReader(java.net.URLConnection)"><!-- --></A><H3>XmlReader</H3><PRE>public <B>XmlReader</B>(java.net.URLConnection&nbsp;conn)          throws java.io.IOException</PRE><DL><DD>Creates a Reader using the InputStream of a URLConnection. <p> 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. <p> 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. <p> It does a lenient charset encoding detection, check the constructor with the lenient parameter for details. <p><P><DT><B>Parameters:</B><DD><CODE>conn</CODE> - URLConnection to create a Reader from.<DT><B>Throws:</B><DD><CODE>java.io.IOException</CODE> - thrown if there is a problem reading the stream of the URLConnection.</DL><HR><A NAME="XmlReader(java.io.InputStream, java.lang.String)"><!-- --></A><H3>XmlReader</H3><PRE>public <B>XmlReader</B>(java.io.InputStream&nbsp;is,                 java.lang.String&nbsp;httpContentType)          throws java.io.IOException</PRE><DL><DD>Creates a Reader using an InputStream an the associated content-type header. <p> 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. <p> It does a lenient charset encoding detection, check the constructor with the lenient parameter for details. <p><P><DT><B>Parameters:</B><DD><CODE>is</CODE> - InputStream to create the reader from.<DD><CODE>httpContentType</CODE> - content-type header to use for the resolution of the charset encoding.<DT><B>Throws:</B><DD><CODE>java.io.IOException</CODE> - thrown if there is a problem reading the file.</DL><HR><A NAME="XmlReader(java.io.InputStream, java.lang.String, boolean)"><!-- --></A><H3>XmlReader</H3><PRE>public <B>XmlReader</B>(java.io.InputStream&nbsp;is,                 java.lang.String&nbsp;httpContentType,                 boolean&nbsp;lenient)          throws java.io.IOException,                 <A HREF="../../../../com/sun/syndication/io/XmlReaderException.html" title="class in com.sun.syndication.io">XmlReaderException</A></PRE><DL><DD>Creates a Reader using an InputStream an the associated content-type header. This constructor is lenient regarding the encoding detection. <p> 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. <p> If lenient detection is indicated and the detection above fails as per specifications it then attempts the following: <p> If the content type was 'text/html' it replaces it with 'text/xml' and tries the detection again. <p> Else if the XML prolog had a charset encoding that encoding is used. <p> Else if the content type had a charset encoding that encoding is used. <p> Else 'UTF-8' is used. <p> If lenient detection is indicated an XmlReaderException is never thrown. <p><P><DT><B>Parameters:</B><DD><CODE>is</CODE> - InputStream to create the reader from.<DD><CODE>httpContentType</CODE> - content-type header to use for the resolution of the charset encoding.<DD><CODE>lenient</CODE> - indicates if the charset encoding detection should be relaxed.<DT><B>Throws:</B><DD><CODE>java.io.IOException</CODE> - thrown if there is a problem reading the file.<DD><CODE><A HREF="../../../../com/sun/syndication/io/XmlReaderException.html" title="class in com.sun.syndication.io">XmlReaderException</A></CODE> - thrown if the charset encoding could not be determined according to the specs.</DL><!-- ============ METHOD DETAIL ========== --><A NAME="method_detail"><!-- --></A><TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""><TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"><TD COLSPAN=1><FONT SIZE="+2"><B>Method Detail</B></FONT></TD></TR></TABLE><A NAME="getEncoding()"><!-- --></A><H3>getEncoding</H3><PRE>public java.lang.String <B>getEncoding</B>()</PRE><DL><DD>Returns the charset encoding of the XmlReader. <p><P><DD><DL><DT><B>Returns:</B><DD>charset encoding.</DL></DD></DL><HR><A NAME="read(char[], int, int)"><!-- --></A><H3>read</H3><PRE>public int <B>read</B>(char[]&nbsp;buf,                int&nbsp;offset,                int&nbsp;len)         throws java.io.IOException</PRE><DL><DD><DL><DT><B>Throws:</B><DD><CODE>java.io.IOException</CODE></DL></DD></DL><HR><A NAME="close()"><!-- --></A><H3>close</H3><PRE>public void <B>close</B>()           throws java.io.IOException</PRE><DL><DD>Closes the XmlReader stream. <p><P><DD><DL><DT><B>Throws:</B><DD><CODE>java.io.IOException</CODE> - thrown if there was a problem closing the stream.</DL></DD></DL><!-- ========= END OF CLASS DATA ========= --><HR><!-- ======= START OF BOTTOM NAVBAR ====== --><A NAME="navbar_bottom"><!-- --></A><A HREF="#skip-navbar_bottom" title="Skip navigation links"></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""><TR><TD COLSPAN=3 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"><A NAME="navbar_bottom_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">  <TR ALIGN="center" VALIGN="top">  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="class-use/XmlReader.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD>  <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1">    <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD>  </TR></TABLE></TD><TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM></EM></TD></TR><TR><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">&nbsp;<A HREF="../../../../com/sun/syndication/io/WireFeedOutput.html" title="class in com.sun.syndication.io"><B>PREV CLASS</B></A>&nbsp;&nbsp;NEXT CLASS</FONT></TD><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">  <A HREF="../../../../index.html" target="_top"><B>FRAMES</B></A>  &nbsp;&nbsp;<A HREF="XmlReader.html" target="_top"><B>NO FRAMES</B></A>  &nbsp;&nbsp;<SCRIPT type="text/javascript">  <!--  if(window==top) {    document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');  }  //--></SCRIPT><NOSCRIPT>  <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A></NOSCRIPT></FONT></TD></TR><TR><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">  SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#fields_inherited_from_class_java.io.Reader">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD><TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD></TR></TABLE><A NAME="skip-navbar_bottom"></A><!-- ======== END OF BOTTOM NAVBAR ======= --><HR>Copyright &copy; 2004-2006 Sun Microsystems. All Rights Reserved.</BODY></HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -