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

📄 logreader.html

📁 用JAVA编写的,在做实验的时候留下来的,本来想删的,但是传上来,大家分享吧
💻 HTML
📖 第 1 页 / 共 4 页
字号:
                        included.<DD><CODE>logsize</CODE> - Size of the log in bytes<DT><B>Returns:</B><DD>An array of two strings is returned. At index 0 all lines in a         log/file matching a given regular expression is located.         At index 1 there is an informational string about how large a         segment of the file is being returned.         Null is returned if errors occur (file not found or io exception)         If a PatternSyntaxException occurs, it's error message will be         returned and the informational string will be empty (not null).</DL></DD></DL><HR><A NAME="getByRegExpr(java.lang.String, java.lang.String, java.lang.String, boolean, int, int)"><!-- --></A><H3>getByRegExpr</H3><PRE>public static java.lang.String[] <B>getByRegExpr</B>(java.lang.String&nbsp;aFileName,                                              java.lang.String&nbsp;regExpr,                                              java.lang.String&nbsp;addLines,                                              boolean&nbsp;prependLineNumbers,                                              int&nbsp;skipFirstMatches,                                              int&nbsp;numberOfMatches)</PRE><DL><DD>Returns all lines in a log/file matching a given regular expression.   Possible to get lines immediately following the matched line.  Also  possible to have each line prepended by it's line number.<P><DD><DL><DT><B>Parameters:</B><DD><CODE>aFileName</CODE> - The filename of the log/file<DD><CODE>regExpr</CODE> - The regular expression that is to be used<DD><CODE>addLines</CODE> - Any lines following a match that <b>begin</b> with this                  string will also be included. We will stop including new                  lines once we hit the first that does not match.<DD><CODE>prependLineNumbers</CODE> - If true, then each line will be prepended by                            it's line number in the file.<DD><CODE>skipFirstMatches</CODE> - The first number of matches up to this value will                         be skipped over.<DD><CODE>numberOfMatches</CODE> - Once past matches that are to be skipped this many                        matches will be added to the return value. A                        value of 0 will cause all matching lines to be                        included.<DT><B>Returns:</B><DD>An array of two strings is returned. At index 0 tall lines in a         log/file matching a given regular expression is located.         At index 1 there is an informational string about how large a         segment of the file is being returned.         Null is returned if errors occur (file not found or io exception)         If a PatternSyntaxException occurs, it's error message will be         returned and the informational string will be empty (not null).</DL></DD></DL><HR><A NAME="getByRegExprFromSeries(java.lang.String, java.lang.String, java.lang.String, boolean, int, int)"><!-- --></A><H3>getByRegExprFromSeries</H3><PRE>public static java.lang.String[] <B>getByRegExprFromSeries</B>(java.lang.String&nbsp;aFileName,                                                        java.lang.String&nbsp;regExpr,                                                        java.lang.String&nbsp;addLines,                                                        boolean&nbsp;prependLineNumbers,                                                        int&nbsp;skipFirstMatches,                                                        int&nbsp;numberOfMatches)</PRE><DL><DD>Returns all lines in a log/file matching a given regular expression.   Possible to get lines immediately following the matched line.  Also  possible to have each line prepended by it's  line number.<P><DD><DL><DT><B>Parameters:</B><DD><CODE>aFileName</CODE> - The filename of the log/file<DD><CODE>regExpr</CODE> - The regular expression that is to be used<DD><CODE>addLines</CODE> - Any lines following a match that <b>begin</b> with this                  string will also be included. We will stop including new                  lines once we hit the first that does not match.<DD><CODE>prependLineNumbers</CODE> - If true, then each line will be prepended by                            it's line number in the file.<DD><CODE>skipFirstMatches</CODE> - The first number of matches up to this value will                         be skipped over.<DD><CODE>numberOfMatches</CODE> - Once past matches that are to be skipped this many                        matches will be added to the return value. A                        value of 0 will cause all matching lines to be                        included.<DT><B>Returns:</B><DD>An array of two strings is returned. At index 0 tall lines in a         log/file matching a given regular expression is located.         At index 1 there is an informational string about how large a         segment of the file is being returned.         Null is returned if errors occur (file not found or io exception)         If a PatternSyntaxException occurs, it's error message will be         returned and the informational string will be empty (not null).</DL></DD></DL><HR><A NAME="getByRegExpr(java.io.InputStreamReader, java.lang.String, java.lang.String, boolean, int, int, long)"><!-- --></A><H3>getByRegExpr</H3><PRE>public static java.lang.String[] <B>getByRegExpr</B>(java.io.InputStreamReader&nbsp;reader,                                              java.lang.String&nbsp;regExpr,                                              java.lang.String&nbsp;addLines,                                              boolean&nbsp;prependLineNumbers,                                              int&nbsp;skipFirstMatches,                                              int&nbsp;numberOfMatches,                                              long&nbsp;logsize)</PRE><DL><DD>Returns all lines in a log/file matching a given regular expression.   Possible to get lines immediately following the matched line.  Also  possible to have each line prepended by it's line number.<P><DD><DL><DT><B>Parameters:</B><DD><CODE>reader</CODE> - The reader of the log/file<DD><CODE>regExpr</CODE> - The regular expression that is to be used<DD><CODE>addLines</CODE> - Any lines following a match that <b>begin</b> with this                  string will also be included. We will stop including new                  lines once we hit the first that does not match.<DD><CODE>prependLineNumbers</CODE> - If true, then each line will be prepended by                            it's line number in the file.<DD><CODE>skipFirstMatches</CODE> - The first number of matches up to this value will                         be skipped over.<DD><CODE>numberOfMatches</CODE> - Once past matches that are to be skipped this many                        matches will be added to the return value. A                        value of 0 will cause all matching lines to be                        included.<DD><CODE>logsize</CODE> - Size of the log in bytes<DT><B>Returns:</B><DD>An array of two strings is returned. At index 0 tall lines in a         log/file matching a given regular expression is located.         At index 1 there is an informational string about how large a         segment of the file is being returned.         Null is returned if errors occur (file not found or io exception)         If a PatternSyntaxException occurs, it's error message will be         returned and the informational string will be empty (not null).</DL></DD></DL><HR><A NAME="tail(java.lang.String)"><!-- --></A><H3>tail</H3><PRE>public static java.lang.String[] <B>tail</B>(java.lang.String&nbsp;aFileName)</PRE><DL><DD>Implementation of a unix-like 'tail' command<P><DD><DL><DT><B>Parameters:</B><DD><CODE>aFileName</CODE> - a file name String<DT><B>Returns:</B><DD>An array of two strings is returned. At index 0 the String         representation of at most 10 last lines is located.         At index 1 there is an informational string about how large a         segment of the file is being returned.         Null is returned if errors occur (file not found or io exception)</DL></DD></DL><HR><A NAME="tail(java.lang.String, int)"><!-- --></A><H3>tail</H3><PRE>public static java.lang.String[] <B>tail</B>(java.lang.String&nbsp;aFileName,                                      int&nbsp;n)</PRE><DL><DD>Implementation of a unix-like 'tail -n' command<P><DD><DL><DT><B>Parameters:</B><DD><CODE>aFileName</CODE> - a file name String<DD><CODE>n</CODE> - int number of lines to be returned<DT><B>Returns:</B><DD>An array of two strings is returned. At index 0 the String         representation of at most n last lines is located.         At index 1 there is an informational string about how large a         segment of the file is being returned.         Null is returned if errors occur (file not found or io exception)</DL></DD></DL><HR><A NAME="tail(java.io.RandomAccessFile, int)"><!-- --></A><H3>tail</H3><PRE>public static java.lang.String[] <B>tail</B>(java.io.RandomAccessFile&nbsp;raf,                                      int&nbsp;n)</PRE><DL><DD>Implementation of a unix-like 'tail -n' command<P><DD><DL><DT><B>Parameters:</B><DD><CODE>raf</CODE> - a RandomAccessFile to tail<DD><CODE>n</CODE> - int number of lines to be returned<DT><B>Returns:</B><DD>An array of two strings is returned. At index 0 the String         representation of at most n last lines is located.         At index 1 there is an informational string about how large a         segment of the file is being returned.         Null is returned if errors occur (file not found or io exception)</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=2 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/LogReader.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="../../../../org/archive/crawler/util/IoUtils.html" title="class in org.archive.crawler.util"><B>PREV CLASS</B></A>&nbsp;&nbsp;<A HREF="../../../../org/archive/crawler/util/LogUtils.html" title="class in org.archive.crawler.util"><B>NEXT CLASS</B></A></FONT></TD><TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">  <A HREF="../../../../index.html?org/archive/crawler/util/LogReader.html" target="_top"><B>FRAMES</B></A>  &nbsp;&nbsp;<A HREF="LogReader.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;FIELD&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; 2003-2006 Internet Archive. All Rights Reserved.</BODY></HTML>

⌨️ 快捷键说明

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